diff --git a/.gitignore b/.gitignore index a7af0a7..d2b4c96 100644 --- a/.gitignore +++ b/.gitignore @@ -1,11 +1,18 @@ /.idea/ /landcover-S-SAR/build/ /landcover-S-SAR/dist/ +/landcover-S-SAR/run_log/ /Ortho/build/ /Ortho/dist/ +/Ortho/run_log/ /backScattering/build/ /backScattering/dist/ +/backScattering/run_log/ /leafAreaIndex-S-SAR/build/ /leafAreaIndex-S-SAR/dist/ +/leafAreaIndex-S-SAR/run_log/ /soilMoisture-S-SAR/build/ -/soilMoisture-S-SAR/dist/ \ No newline at end of file +/soilMoisture-S-SAR/dist/ +/soilMoisture-S-SAR/run_log/ +/soilSalinity-S-SAR/ +/surfaceRoughness-S-SAR/ \ No newline at end of file diff --git a/Ortho/Ortho-S-SAR.xml b/Ortho/Ortho-S-SAR.xml index 2674e1d..010cb42 100644 --- a/Ortho/Ortho-S-SAR.xml +++ b/Ortho/Ortho-S-SAR.xml @@ -1,7 +1,7 @@ CSAR_202107275419_0001-0 - F:\MicroWorkspace\S_SAR\yuan\HJ2E_ORTH_Test\ + D:\613NET\ComputingNode\ftproot\Production\PL_20240507155658_0002\ File ElementAlg @@ -60,7 +60,7 @@ File tif Cal - F:\MicroWorkspace\S_SAR\yuan\dem\dem.tif + F:\MicroWorkspace\S_SAR\yuan\dem\dem_cut1.tif True True File @@ -92,7 +92,7 @@ File tar.gz Cal - F:\MicroWorkspace\S_SAR\yuan\HJ2E_ORTH_Test\Ortho\Output\HJ2E_KSC_STRIP_006199_E85.8_N44.2_20231124_SLC_HHHV_L10000135594-Ortho.tar.gz + D:\613NET\ComputingNode\ftproot\Production\PL_20240507155658_0002\Ortho\Output\HJ2E_KSC_STRIP_006199_E85.8_N44.2_20231124_SLC_HHHV_L10000135594-Ortho.tar.gz DEFAULT DEFAULT DEFAULT diff --git a/Ortho/OrthoMain.py b/Ortho/OrthoMain.py index 1f8e312..9897045 100644 --- a/Ortho/OrthoMain.py +++ b/Ortho/OrthoMain.py @@ -330,7 +330,8 @@ class OrthoMain: """ # 创建文件夹 name = os.path.split(tar_gz_path)[1].rstrip('.tar.gz') - file_dir = os.path.join(out_dir, name + '\\') + name_d = name.split('_')[6] + file_dir = os.path.join(out_dir, name_d + '\\') if os.path.exists(file_dir) is False: os.makedirs(file_dir) # 解压 @@ -428,7 +429,7 @@ class OrthoMain: logger.error("rpc file Not Found!") # out_slc_power_path=os.path.join(self.__workspace_package_path,os.path.basename(out_power_path.replace("_db.tif",".tif").replace("L1B","L4"))) out_slc_power_path=os.path.join(self.__workspace_package_path,os.path.basename(out_power_path.replace("_db.tif","-ortho.tif"))) - rpc_correction(out_power_path,rpc_slc_path,out_slc_power_path) + rpc_correction(out_power_path,rpc_slc_path,out_slc_power_path, dem_merged_path) logger.info('progress bar: 30%') # 2.1 生成映射表 slc_path=os.path.join(slc_paths,os.listdir(slc_paths)[0]) @@ -677,6 +678,8 @@ class OrthoMain: if file_type in ["xml"]: output = os.path.join(self.__workspace_package_path, filename) shutil.copy(apath, output) + elif 'lin' in filename: + continue else: output=os.path.join(self.__workspace_package_path, filename) shutil.copy(apath, output) diff --git a/backScattering/BackScattering-S-SAR.xml b/backScattering/BackScattering-S-SAR.xml index d6c48e6..6bcbc6d 100644 --- a/backScattering/BackScattering-S-SAR.xml +++ b/backScattering/BackScattering-S-SAR.xml @@ -1,7 +1,7 @@ CSAR_202107275419_0001-0 - D:\micro\SWork\ + D:\613NET\ComputingNode\ftproot\Production\PL_20240507155658_0002\ File ElementAlg @@ -42,7 +42,7 @@ File tar.gz Cal - F:\MicroWorkspace\S_SAR\AHV\HJ2E_MYC_QPS_001752_E118.0_N37.7_20230204_SLC_AHV_L10000010458.tar.gz + F:\MicroWorkspace\S_SAR\HJ2E_MYC_STRIP_008031_E110.8_N19.8_20240323_SLC_HHHV_L10000185601.tar.gz True False File @@ -55,9 +55,9 @@ DEM数字高程影像 30m分辨率DEM数字高程影像 File - zip + tif Cal - F:\al_zhongji\S-SAR-data\backScattering\DEM\115E33N_COP30.zip + F:\MicroWorkspace\COPDEM\COPDEM_Int16\109E15N_COP30.tif True True File @@ -74,7 +74,7 @@ File tar.gz Cal - D:\micro\SWork\BackScattering\Output\HJ2E_MYC_QPS_001752_E118.0_N37.7_20230204_SLC_AHV_L10000010458-cal.tar.gz + D:\613NET\ComputingNode\ftproot\Production\PL_20240507155658_0002\BackScattering\Output\HJ2E_MYC_STRIP_008031_E110.8_N19.8_20240323_SLC_HHHV_L10000185601-cal.tar.gz DEFAULT DEFAULT DEFAULT diff --git a/backScattering/BackScatteringMain.py b/backScattering/BackScatteringMain.py index 09d5ec5..5270160 100644 --- a/backScattering/BackScatteringMain.py +++ b/backScattering/BackScatteringMain.py @@ -166,7 +166,8 @@ class ScatteringMain: """ # 创建文件夹 name = os.path.split(tar_gz_path)[1].rstrip('.tar.gz') - file_dir = os.path.join(out_dir, name + '\\') + name_d = name.split('_')[6] + file_dir = os.path.join(out_dir, name_d + '\\') if os.path.exists(file_dir) is False: os.makedirs(file_dir) # 解压 diff --git a/backScattering/run_log/BackScattering2024-04-07-13-41-56.log b/backScattering/run_log/BackScattering2024-04-07-13-41-56.log deleted file mode 100644 index 4c53e90..0000000 --- a/backScattering/run_log/BackScattering2024-04-07-13-41-56.log +++ /dev/null @@ -1,21 +0,0 @@ -[04/07/2024 13:41:56] [15772] [INFO]- sysdir: D:\estar-proj\microproduct-S-SAR\backScattering ---from: BackScatteringMain.check_source (BackScatteringMain.py:Line67) -[04/07/2024 13:41:56] [15772] [ERROR]- run-time error! ---from: BackScatteringMain. (BackScatteringMain.py:Line495) -Traceback (most recent call last): - File "D:\estar-proj\microproduct-S-SAR\tool\algorithm\xml\AlgXmlHandle.py", line 48, in init_xml - self.__tree.parse(self.in_path) - File "D:\Anaconda\envs\micro\lib\xml\etree\ElementTree.py", line 584, in parse - source = open(source, "rb") -FileNotFoundError: [Errno 2] No such file or directory: 'BackScattering.xml' - -During handling of the above exception, another exception occurred: - -Traceback (most recent call last): - File "D:/estar-proj/microproduct-S-SAR/backScattering/BackScatteringMain.py", line 489, in - if not ScatteringMain.check_source(): - File "D:/estar-proj/microproduct-S-SAR/backScattering/BackScatteringMain.py", line 69, in check_source - if self.__check_handler.check_alg_xml() is False: - File "D:\estar-proj\microproduct-S-SAR\tool\algorithm\xml\AlgXmlHandle.py", line 318, in check_alg_xml - if self.__alg_xml_handle.init_xml(): - File "D:\estar-proj\microproduct-S-SAR\tool\algorithm\xml\AlgXmlHandle.py", line 50, in init_xml - msg = ex + "xml_path = " + self.in_path -TypeError: unsupported operand type(s) for +: 'FileNotFoundError' and 'str' diff --git a/backScattering/run_log/BackScattering2024-04-07-13-42-24.log b/backScattering/run_log/BackScattering2024-04-07-13-42-24.log deleted file mode 100644 index 612a80f..0000000 --- a/backScattering/run_log/BackScattering2024-04-07-13-42-24.log +++ /dev/null @@ -1,5 +0,0 @@ -[04/07/2024 13:42:24] [22836] [INFO]- sysdir: D:\estar-proj\microproduct-S-SAR\backScattering ---from: BackScatteringMain.check_source (BackScatteringMain.py:Line67) -[04/07/2024 13:42:24] [22836] [INFO]- init algXML succeed ---from: AlgXmlHandle.check_alg_xml (AlgXmlHandle.py:Line319) -[04/07/2024 13:42:24] [22836] [INFO]- create new workspace success! ---from: BackScatteringMain.__create_work_space (BackScatteringMain.py:Line222) -[04/07/2024 13:42:34] [22836] [INFO]- check_source success! ---from: BackScatteringMain.check_source (BackScatteringMain.py:Line93) -[04/07/2024 13:42:34] [22836] [INFO]- progress bar: 30% ---from: BackScatteringMain.check_source (BackScatteringMain.py:Line94) diff --git a/landcover-S-SAR/LandCover-S-SAR.xml b/landcover-S-SAR/LandCover-S-SAR.xml index f677f4c..4c6bfb3 100644 --- a/landcover-S-SAR/LandCover-S-SAR.xml +++ b/landcover-S-SAR/LandCover-S-SAR.xml @@ -1,7 +1,7 @@ CSAR_202107275419_0001-0 - D:\micro\SWork\ + D:\613NET\ComputingNode\ftproot\Production\PL_20240507155658_0002\ File ElementAlg @@ -38,7 +38,7 @@ File tar.gz Man - E:\MicroWorkspace\S_SAR\AHV\HJ2E_MYC_QPS_001752_E118.0_N37.7_20230204_SLC_AHV_L10000010458-Ortho.tar.gz + F:\MicroWorkspace\S_SAR\AHV\HJ2E_MYC_QPS_001752_E118.0_N37.7_20230204_SLC_AHV_L10000010458-Ortho.tar.gz True False File @@ -51,9 +51,9 @@ 标记数据 标记的样本数据 File - csv + zip Man - E:\MicroWorkspace\S_SAR\AHV\landCoverLable.csv + F:\al_zhongji\S-SAR-data\landCover\SSAR_landcover_landaCoverSample.zip True True UploadInput @@ -87,7 +87,7 @@ Value string Man - 0,1,2,7,8,9,10 + 0,1,2 True True UploadInput @@ -104,7 +104,7 @@ File tar.gz Man - D:\micro\SWork\LandCover\Output\HJ2E_MYC_QPS_001752_E118.0_N37.7_20230204_SLC_AHV_L10000010458-Ortho-LANDCLASS.tar.gz + D:\613NET\ComputingNode\ftproot\Production\PL_20240507155658_0002\LandCover\Output\HJ2E_MYC_QPS_001752_E118.0_N37.7_20230204_SLC_AHV_L10000010458-Ortho-LANDCLASS.tar.gz diff --git a/landcover-S-SAR/LandCoverMain.py b/landcover-S-SAR/LandCoverMain.py index 1e3f427..a6677c8 100644 --- a/landcover-S-SAR/LandCoverMain.py +++ b/landcover-S-SAR/LandCoverMain.py @@ -128,7 +128,8 @@ class LandCoverMain: def get_tar_gz_inf(self, tar_gz_path): para_dic = {} name = os.path.split(tar_gz_path)[1].rstrip('.tar.gz') - file_dir = os.path.join(self.__workspace_preprocessing_path, name + '\\') + name_d = name.split('_')[6] + file_dir = os.path.join(self.__workspace_preprocessing_path, name_d + '\\') file.de_targz(tar_gz_path, file_dir) # 元文件字典 para_dic.update(InitPara.get_meta_dic_new(InitPara.get_meta_paths(file_dir, name), name)) @@ -661,7 +662,7 @@ if __name__ == '__main__': start = datetime.datetime.now() try: if len(sys.argv) < 2: - xml_path = 'LandCover.xml' + xml_path = 'LandCover-S-SAR.xml' else: xml_path = sys.argv[1] main_handler = LandCoverMain(xml_path) diff --git a/landcover-S-SAR/run_log/LandCover2024-01-10-18-18-59.log b/landcover-S-SAR/run_log/LandCover2024-01-10-18-18-59.log deleted file mode 100644 index 2c43a6b..0000000 --- a/landcover-S-SAR/run_log/LandCover2024-01-10-18-18-59.log +++ /dev/null @@ -1,67 +0,0 @@ -[01/10/2024 18:18:59] [17188] [INFO]- sysdir: D:\estar-proj\microproduct-S-SAR\landcover-S-SAR ---from: LandCoverMain.check_source (LandCoverMain.py:Line109) -[01/10/2024 18:18:59] [17188] [INFO]- init algXML succeed ---from: AlgXmlHandle.check_alg_xml (AlgXmlHandle.py:Line319) -[01/10/2024 18:18:59] [17188] [INFO]- create new workspace success! ---from: LandCoverMain.__create_work_space (LandCoverMain.py:Line155) -[01/10/2024 18:19:32] [17188] [INFO]- check_source success! ---from: LandCoverMain.check_source (LandCoverMain.py:Line125) -[01/10/2024 18:19:32] [17188] [INFO]- scope0:[[117.92941666666667, 37.77280555555556], [118.24280555555556, 37.77280555555556], [117.92941666666667, 37.446361111111116], [118.24280555555556, 37.446361111111116]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[01/10/2024 18:19:32] [17188] [INFO]- scope1:[[117.92941666666667, 37.77280555555556], [118.24280555555556, 37.77280555555556], [117.92941666666667, 37.446361111111116], [118.24280555555556, 37.446361111111116]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[01/10/2024 18:19:32] [17188] [INFO]- scope roi :[(117.92941666666667, 37.446361111111116), (117.92941666666667, 37.77280555555556), (118.24280555555556, 37.77280555555556), (118.24280555555556, 37.446361111111116)] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line245) -[01/10/2024 18:19:45] [17188] [INFO]- cut sim_ori success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[01/10/2024 18:20:17] [17188] [INFO]- preprocess_handle success! ---from: LandCoverMain.preprocess_handle (LandCoverMain.py:Line201) -[01/10/2024 18:20:37] [17188] [INFO]- 1,water,num:17285 ---from: LandCoverAuxData.__trans_measuredata (LandCoverAuxData.py:Line127) -[01/10/2024 18:20:37] [17188] [INFO]- max number =10000, random select10000 point as train data! ---from: LandCoverAuxData.__trans_measuredata (LandCoverAuxData.py:Line129) -[01/10/2024 18:20:37] [17188] [INFO]- 2,building,num:10560 ---from: LandCoverAuxData.__trans_measuredata (LandCoverAuxData.py:Line127) -[01/10/2024 18:20:37] [17188] [INFO]- max number =10000, random select10000 point as train data! ---from: LandCoverAuxData.__trans_measuredata (LandCoverAuxData.py:Line129) -[01/10/2024 18:20:37] [17188] [INFO]- 3,crop,num:39396 ---from: LandCoverAuxData.__trans_measuredata (LandCoverAuxData.py:Line127) -[01/10/2024 18:20:37] [17188] [INFO]- max number =10000, random select10000 point as train data! ---from: LandCoverAuxData.__trans_measuredata (LandCoverAuxData.py:Line129) -[01/10/2024 18:20:38] [17188] [INFO]- read csv data success! ---from: LandCoverMain.process_handle (LandCoverMain.py:Line523) -[01/10/2024 18:20:38] [17188] [INFO]- progress bar: 20% ---from: LandCoverMain.process_handle (LandCoverMain.py:Line524) -[01/10/2024 18:20:38] [17188] [WARNING]- OrthoMetaData.get_QualifyValue() error! ---from: MetaDataHandler.get_QualifyValue (MetaDataHandler.py:Line87) -[01/10/2024 18:20:38] [17188] [INFO]- GF3L1AMetaData.get_QualifyValue() success! ---from: MetaDataHandler.get_QualifyValue (MetaDataHandler.py:Line89) -[01/10/2024 18:20:38] [17188] [WARNING]- OrthoMetaData.get_Kdb() error! ---from: MetaDataHandler.get_Kdb (MetaDataHandler.py:Line97) -[01/10/2024 18:20:38] [17188] [INFO]- GF3L1AMetaData.get_Kdb() success! ---from: MetaDataHandler.get_Kdb (MetaDataHandler.py:Line99) -[01/10/2024 18:20:38] [17188] [WARNING]- OrthoMetaData.get_QualifyValue() error! ---from: MetaDataHandler.get_QualifyValue (MetaDataHandler.py:Line87) -[01/10/2024 18:20:38] [17188] [INFO]- GF3L1AMetaData.get_QualifyValue() success! ---from: MetaDataHandler.get_QualifyValue (MetaDataHandler.py:Line89) -[01/10/2024 18:20:38] [17188] [WARNING]- OrthoMetaData.get_Kdb() error! ---from: MetaDataHandler.get_Kdb (MetaDataHandler.py:Line97) -[01/10/2024 18:20:38] [17188] [INFO]- GF3L1AMetaData.get_Kdb() success! ---from: MetaDataHandler.get_Kdb (MetaDataHandler.py:Line99) -[01/10/2024 18:20:38] [17188] [WARNING]- OrthoMetaData.get_QualifyValue() error! ---from: MetaDataHandler.get_QualifyValue (MetaDataHandler.py:Line87) -[01/10/2024 18:20:38] [17188] [INFO]- GF3L1AMetaData.get_QualifyValue() success! ---from: MetaDataHandler.get_QualifyValue (MetaDataHandler.py:Line89) -[01/10/2024 18:20:38] [17188] [WARNING]- OrthoMetaData.get_Kdb() error! ---from: MetaDataHandler.get_Kdb (MetaDataHandler.py:Line97) -[01/10/2024 18:20:38] [17188] [INFO]- GF3L1AMetaData.get_Kdb() success! ---from: MetaDataHandler.get_Kdb (MetaDataHandler.py:Line99) -[01/10/2024 18:20:38] [17188] [WARNING]- OrthoMetaData.get_QualifyValue() error! ---from: MetaDataHandler.get_QualifyValue (MetaDataHandler.py:Line87) -[01/10/2024 18:20:38] [17188] [INFO]- GF3L1AMetaData.get_QualifyValue() success! ---from: MetaDataHandler.get_QualifyValue (MetaDataHandler.py:Line89) -[01/10/2024 18:20:38] [17188] [WARNING]- OrthoMetaData.get_Kdb() error! ---from: MetaDataHandler.get_Kdb (MetaDataHandler.py:Line97) -[01/10/2024 18:20:38] [17188] [INFO]- GF3L1AMetaData.get_Kdb() success! ---from: MetaDataHandler.get_Kdb (MetaDataHandler.py:Line99) -[01/10/2024 18:23:05] [17188] [INFO]- refine_lee filter success! ---from: LandCoverMain.ahv_to_t3 (LandCoverMain.py:Line476) -[01/10/2024 18:23:05] [17188] [INFO]- progress bar: 30% ---from: LandCoverMain.ahv_to_t3 (LandCoverMain.py:Line477) -[01/10/2024 18:24:02] [17188] [INFO]- feature_tif_paths:{'Freeman_Dbl': 'D:\\micro\\SWork\\LandCover\\Temporary\\processing\\feature_tif\\Freeman_Dbl.tif', 'Freeman_Odd': 'D:\\micro\\SWork\\LandCover\\Temporary\\processing\\feature_tif\\Freeman_Odd.tif', 'Freeman_Vol': 'D:\\micro\\SWork\\LandCover\\Temporary\\processing\\feature_tif\\Freeman_Vol.tif', 'Yamaguchi4_Dbl': 'D:\\micro\\SWork\\LandCover\\Temporary\\processing\\feature_tif\\Yamaguchi4_Dbl.tif', 'Yamaguchi4_Hlx': 'D:\\micro\\SWork\\LandCover\\Temporary\\processing\\feature_tif\\Yamaguchi4_Hlx.tif', 'Yamaguchi4_Odd': 'D:\\micro\\SWork\\LandCover\\Temporary\\processing\\feature_tif\\Yamaguchi4_Odd.tif', 'Yamaguchi4_Vol': 'D:\\micro\\SWork\\LandCover\\Temporary\\processing\\feature_tif\\Yamaguchi4_Vol.tif'} ---from: LandCoverMain.process_handle (LandCoverMain.py:Line539) -[01/10/2024 18:26:06] [17188] [INFO]- decompose feature success! ---from: LandCoverMain.process_handle (LandCoverMain.py:Line548) -[01/10/2024 18:26:06] [17188] [INFO]- progress bar: 50% ---from: LandCoverMain.process_handle (LandCoverMain.py:Line549) -[01/10/2024 18:26:06] [17188] [INFO]- feature_list:['0: Freeman_Dbl_geo.tif', '1: Freeman_Odd_geo.tif', '2: Freeman_Vol_geo.tif', '3: Yamaguchi4_Dbl_geo.tif', '4: Yamaguchi4_Hlx_geo.tif', '5: Yamaguchi4_Odd_geo.tif', '6: Yamaguchi4_Vol_geo.tif'] ---from: machineLearning.get_name_list (machineLearning.py:Line233) -[01/10/2024 18:26:13] [17188] [INFO]- gene_train_set success! ---from: machineLearning.gene_train_set (machineLearning.py:Line271) -[01/10/2024 18:26:15] [17188] [INFO]- importances:[0.05689924 0.02829015 0.29919273 0.09420504 0.16191243 0.08964642 - 0.26985399],threshold=0.07 ---from: machineLearning.sel_optimal_feature_set (machineLearning.py:Line295) -[01/10/2024 18:26:15] [17188] [INFO]- optimal_feature:[2, 6, 4, 3, 5] ---from: machineLearning.sel_optimal_feature_set (machineLearning.py:Line301) -[01/10/2024 18:26:15] [17188] [INFO]- correlation_map: - [[0. 0.8585481 0.64122694 0.15675201 0.23713112] - [0. 0. 0.20026 0.11654953 0.17071176] - [0. 0. 0. 0.01785906 0.03469099] - [0. 0. 0. 0. 0.05625127] - [0. 0. 0. 0. 0. ]] ---from: machineLearning.remove_correlation_feature (machineLearning.py:Line335) -[01/10/2024 18:26:15] [17188] [INFO]- validity_list_corr:[2 4 3 5] ---from: machineLearning.remove_correlation_feature (machineLearning.py:Line339) -[01/10/2024 18:26:15] [17188] [INFO]- [2 4 3 5] ---from: machineLearning.remove_correlation_feature (machineLearning.py:Line340) -[01/10/2024 18:26:15] [17188] [INFO]- train_feature:['2: Freeman_Vol_geo.tif' '4: Yamaguchi4_Hlx_geo.tif' - '3: Yamaguchi4_Dbl_geo.tif' '5: Yamaguchi4_Odd_geo.tif'] ---from: machineLearning.gene_optimal_train_set (machineLearning.py:Line43) -[01/10/2024 18:26:15] [17188] [INFO]- RF trainning ---from: machineLearning.trainRF (machineLearning.py:Line381) -[01/10/2024 18:26:17] [17188] [INFO]- RF train successful ---from: LandCoverMain.process_handle (LandCoverMain.py:Line564) -[01/10/2024 18:26:17] [17188] [INFO]- progress bar: 60% ---from: LandCoverMain.process_handle (LandCoverMain.py:Line569) -[01/10/2024 18:29:54] [17188] [INFO]- test_feature:dict_keys(['Freeman_Vol_geo', 'Yamaguchi4_Dbl_geo', 'Yamaguchi4_Hlx_geo', 'Yamaguchi4_Odd_geo']) ---from: machineLearning.gene_test_set (machineLearning.py:Line83) -[01/10/2024 18:29:54] [17188] [INFO]- blocking tifs success! ---from: machineLearning.gene_test_set (machineLearning.py:Line84) -[01/10/2024 18:30:00] [17188] [INFO]- create features matrix success! ---from: machineLearning.gene_test_set (machineLearning.py:Line101) -[01/10/2024 18:30:00] [17188] [INFO]- testing ---from: LandCoverMain.process_handle (LandCoverMain.py:Line575) -[01/10/2024 18:32:14] [17188] [INFO]- test success! ---from: LandCoverMain.process_handle (LandCoverMain.py:Line577) -[01/10/2024 18:32:14] [17188] [INFO]- progress bar: 95% ---from: LandCoverMain.process_handle (LandCoverMain.py:Line578) -[01/10/2024 18:32:18] [17188] [INFO]- trans_tif2mask success, path: D:\micro\SWork\LandCover\Temporary\processing\tif_mask.tif ---from: ROIAlg.trans_tif2mask (ROIAlg.py:Line106) -[01/10/2024 18:32:18] [17188] [INFO]- create ROI image success! ---from: LandCoverMain.create_roi (LandCoverMain.py:Line339) -[01/10/2024 18:32:49] [17188] [INFO]- process_handle success! ---from: LandCoverMain.process_handle (LandCoverMain.py:Line619) -[01/10/2024 18:32:49] [17188] [INFO]- successful production of LandCover products! ---from: LandCoverMain.process_handle (LandCoverMain.py:Line620) -[01/10/2024 18:32:51] [17188] [INFO]- running use time: 0:13:52.343642 ---from: LandCoverMain. (LandCoverMain.py:Line681) diff --git a/landcover-S-SAR/run_log/LandCover2024-01-10-18-30-06.log b/landcover-S-SAR/run_log/LandCover2024-01-10-18-30-06.log deleted file mode 100644 index 25c8bf2..0000000 --- a/landcover-S-SAR/run_log/LandCover2024-01-10-18-30-06.log +++ /dev/null @@ -1,16 +0,0 @@ -[01/10/2024 18:30:15] [16712] [INFO]- total:110,block:0 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_0_1024_0_1024.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:30:27] [16712] [INFO]- total:110,block:0 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_0_1024_0_1024.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:30:28] [16712] [INFO]- total:110,block:15 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_1024_2048_5120_6144.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:30:43] [16712] [INFO]- total:110,block:15 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_1024_2048_5120_6144.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:30:44] [16712] [INFO]- total:110,block:30 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_3072_4096_0_1024.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:30:59] [16712] [INFO]- total:110,block:30 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_3072_4096_0_1024.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:30:59] [16712] [INFO]- total:110,block:45 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_4096_5120_5120_6144.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:15] [16712] [INFO]- total:110,block:45 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_4096_5120_5120_6144.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:15] [16712] [INFO]- total:110,block:60 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_6144_7168_0_1024.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:30] [16712] [INFO]- total:110,block:60 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_6144_7168_0_1024.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:30] [16712] [INFO]- total:110,block:75 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_7168_8192_5120_6144.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:47] [16712] [INFO]- total:110,block:75 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_7168_8192_5120_6144.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:47] [16712] [INFO]- total:110,block:90 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_9216_10240_0_1024.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:32:02] [16712] [INFO]- total:110,block:90 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_9216_10240_0_1024.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:32:02] [16712] [INFO]- total:110,block:105 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_9340_10364_5120_6144.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:32:11] [16712] [INFO]- total:110,block:105 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_9340_10364_5120_6144.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) diff --git a/landcover-S-SAR/run_log/LandCover2024-01-10-18-30-07.log b/landcover-S-SAR/run_log/LandCover2024-01-10-18-30-07.log deleted file mode 100644 index 3c1cd48..0000000 --- a/landcover-S-SAR/run_log/LandCover2024-01-10-18-30-07.log +++ /dev/null @@ -1,30 +0,0 @@ -[01/10/2024 18:30:15] [17668] [INFO]- total:110,block:1 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_0_1024_1024_2048.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:30:15] [14248] [INFO]- total:110,block:2 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_0_1024_2048_3072.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:30:28] [17668] [INFO]- total:110,block:1 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_0_1024_1024_2048.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:30:28] [17668] [INFO]- total:110,block:16 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_1024_2048_6144_7168.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:30:28] [14248] [INFO]- total:110,block:2 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_0_1024_2048_3072.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:30:28] [14248] [INFO]- total:110,block:17 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_1024_2048_7168_8192.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:30:44] [17668] [INFO]- total:110,block:16 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_1024_2048_6144_7168.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:30:44] [14248] [INFO]- total:110,block:17 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_1024_2048_7168_8192.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:30:45] [17668] [INFO]- total:110,block:33 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_3072_4096_3072_4096.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:30:45] [14248] [INFO]- total:110,block:34 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_3072_4096_4096_5120.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:01] [17668] [INFO]- total:110,block:33 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_3072_4096_3072_4096.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:01] [17668] [INFO]- total:110,block:48 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_4096_5120_8192_9216.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:01] [14248] [INFO]- total:110,block:34 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_3072_4096_4096_5120.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:01] [14248] [INFO]- total:110,block:50 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_5120_6144_0_1024.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:16] [17668] [INFO]- total:110,block:48 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_4096_5120_8192_9216.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:17] [14248] [INFO]- total:110,block:50 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_5120_6144_0_1024.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:17] [17668] [INFO]- total:110,block:64 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_6144_7168_4096_5120.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:17] [14248] [INFO]- total:110,block:65 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_6144_7168_5120_6144.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:32] [17668] [INFO]- total:110,block:64 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_6144_7168_4096_5120.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:32] [17668] [INFO]- total:110,block:78 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_7168_8192_8192_9216.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:33] [14248] [INFO]- total:110,block:65 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_6144_7168_5120_6144.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:33] [14248] [INFO]- total:110,block:80 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_8192_9216_0_1024.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:47] [17668] [INFO]- total:110,block:78 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_7168_8192_8192_9216.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:47] [17668] [INFO]- total:110,block:93 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_9216_10240_3072_4096.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:49] [14248] [INFO]- total:110,block:80 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_8192_9216_0_1024.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:49] [14248] [INFO]- total:110,block:95 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_9216_10240_5120_6144.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:32:03] [17668] [INFO]- total:110,block:93 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_9216_10240_3072_4096.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:32:03] [17668] [INFO]- total:110,block:108 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_9340_10364_8192_9216.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:32:05] [14248] [INFO]- total:110,block:95 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_9216_10240_5120_6144.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:32:11] [17668] [INFO]- total:110,block:108 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_9340_10364_8192_9216.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) diff --git a/landcover-S-SAR/run_log/LandCover2024-01-10-18-30-08.log b/landcover-S-SAR/run_log/LandCover2024-01-10-18-30-08.log deleted file mode 100644 index 0fe8460..0000000 --- a/landcover-S-SAR/run_log/LandCover2024-01-10-18-30-08.log +++ /dev/null @@ -1,16 +0,0 @@ -[01/10/2024 18:30:15] [17840] [INFO]- total:110,block:3 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_0_1024_3072_4096.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:30:29] [17840] [INFO]- total:110,block:3 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_0_1024_3072_4096.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:30:29] [17840] [INFO]- total:110,block:18 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_1024_2048_8192_9216.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:30:44] [17840] [INFO]- total:110,block:18 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_1024_2048_8192_9216.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:30:44] [17840] [INFO]- total:110,block:31 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_3072_4096_1024_2048.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:30:59] [17840] [INFO]- total:110,block:31 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_3072_4096_1024_2048.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:30:59] [17840] [INFO]- total:110,block:46 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_4096_5120_6144_7168.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:15] [17840] [INFO]- total:110,block:46 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_4096_5120_6144_7168.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:16] [17840] [INFO]- total:110,block:61 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_6144_7168_1024_2048.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:31] [17840] [INFO]- total:110,block:61 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_6144_7168_1024_2048.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:31] [17840] [INFO]- total:110,block:76 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_7168_8192_6144_7168.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:47] [17840] [INFO]- total:110,block:76 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_7168_8192_6144_7168.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:47] [17840] [INFO]- total:110,block:92 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_9216_10240_2048_3072.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:32:03] [17840] [INFO]- total:110,block:92 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_9216_10240_2048_3072.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:32:03] [17840] [INFO]- total:110,block:107 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_9340_10364_7168_8192.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:32:12] [17840] [INFO]- total:110,block:107 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_9340_10364_7168_8192.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) diff --git a/landcover-S-SAR/run_log/LandCover2024-01-10-18-30-09.log b/landcover-S-SAR/run_log/LandCover2024-01-10-18-30-09.log deleted file mode 100644 index 06697fb..0000000 --- a/landcover-S-SAR/run_log/LandCover2024-01-10-18-30-09.log +++ /dev/null @@ -1,14 +0,0 @@ -[01/10/2024 18:30:15] [10168] [INFO]- total:110,block:4 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_0_1024_4096_5120.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:30:29] [10168] [INFO]- total:110,block:4 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_0_1024_4096_5120.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:30:30] [10168] [INFO]- total:110,block:21 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_2048_3072_1024_2048.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:30:45] [10168] [INFO]- total:110,block:21 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_2048_3072_1024_2048.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:30:45] [10168] [INFO]- total:110,block:36 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_3072_4096_6144_7168.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:02] [10168] [INFO]- total:110,block:36 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_3072_4096_6144_7168.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:02] [10168] [INFO]- total:110,block:51 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_5120_6144_1024_2048.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:17] [10168] [INFO]- total:110,block:51 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_5120_6144_1024_2048.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:18] [10168] [INFO]- total:110,block:67 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_6144_7168_7168_8192.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:34] [10168] [INFO]- total:110,block:67 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_6144_7168_7168_8192.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:34] [10168] [INFO]- total:110,block:83 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_8192_9216_3072_4096.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:50] [10168] [INFO]- total:110,block:83 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_8192_9216_3072_4096.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:50] [10168] [INFO]- total:110,block:96 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_9216_10240_6144_7168.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:32:06] [10168] [INFO]- total:110,block:96 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_9216_10240_6144_7168.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) diff --git a/landcover-S-SAR/run_log/LandCover2024-01-10-18-30-10.log b/landcover-S-SAR/run_log/LandCover2024-01-10-18-30-10.log deleted file mode 100644 index 170f136..0000000 --- a/landcover-S-SAR/run_log/LandCover2024-01-10-18-30-10.log +++ /dev/null @@ -1,16 +0,0 @@ -[01/10/2024 18:30:15] [5336] [INFO]- total:110,block:5 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_0_1024_5120_6144.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:30:29] [5336] [INFO]- total:110,block:5 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_0_1024_5120_6144.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:30:30] [5336] [INFO]- total:110,block:20 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_2048_3072_0_1024.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:30:44] [5336] [INFO]- total:110,block:20 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_2048_3072_0_1024.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:30:44] [5336] [INFO]- total:110,block:32 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_3072_4096_2048_3072.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:00] [5336] [INFO]- total:110,block:32 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_3072_4096_2048_3072.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:00] [5336] [INFO]- total:110,block:47 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_4096_5120_7168_8192.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:15] [5336] [INFO]- total:110,block:47 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_4096_5120_7168_8192.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:16] [5336] [INFO]- total:110,block:62 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_6144_7168_2048_3072.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:31] [5336] [INFO]- total:110,block:62 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_6144_7168_2048_3072.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:32] [5336] [INFO]- total:110,block:77 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_7168_8192_7168_8192.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:47] [5336] [INFO]- total:110,block:77 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_7168_8192_7168_8192.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:47] [5336] [INFO]- total:110,block:91 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_9216_10240_1024_2048.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:32:02] [5336] [INFO]- total:110,block:91 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_9216_10240_1024_2048.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:32:02] [5336] [INFO]- total:110,block:106 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_9340_10364_6144_7168.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:32:12] [5336] [INFO]- total:110,block:106 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_9340_10364_6144_7168.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) diff --git a/landcover-S-SAR/run_log/LandCover2024-01-10-18-30-11.log b/landcover-S-SAR/run_log/LandCover2024-01-10-18-30-11.log deleted file mode 100644 index ec18881..0000000 --- a/landcover-S-SAR/run_log/LandCover2024-01-10-18-30-11.log +++ /dev/null @@ -1,16 +0,0 @@ -[01/10/2024 18:30:15] [8892] [INFO]- total:110,block:6 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_0_1024_6144_7168.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:30:29] [8892] [INFO]- total:110,block:6 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_0_1024_6144_7168.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:30:29] [8892] [INFO]- total:110,block:19 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_1024_2048_8926_9950.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:30:45] [8892] [INFO]- total:110,block:19 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_1024_2048_8926_9950.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:30:45] [8892] [INFO]- total:110,block:35 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_3072_4096_5120_6144.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:01] [8892] [INFO]- total:110,block:35 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_3072_4096_5120_6144.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:01] [8892] [INFO]- total:110,block:49 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_4096_5120_8926_9950.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:16] [8892] [INFO]- total:110,block:49 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_4096_5120_8926_9950.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:16] [8892] [INFO]- total:110,block:63 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_6144_7168_3072_4096.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:32] [8892] [INFO]- total:110,block:63 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_6144_7168_3072_4096.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:33] [8892] [INFO]- total:110,block:79 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_7168_8192_8926_9950.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:48] [8892] [INFO]- total:110,block:79 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_7168_8192_8926_9950.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:48] [8892] [INFO]- total:110,block:94 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_9216_10240_4096_5120.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:32:04] [8892] [INFO]- total:110,block:94 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_9216_10240_4096_5120.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:32:04] [8892] [INFO]- total:110,block:109 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_9340_10364_8926_9950.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:32:12] [8892] [INFO]- total:110,block:109 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_9340_10364_8926_9950.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) diff --git a/landcover-S-SAR/run_log/LandCover2024-01-10-18-30-12.log b/landcover-S-SAR/run_log/LandCover2024-01-10-18-30-12.log deleted file mode 100644 index f5424f0..0000000 --- a/landcover-S-SAR/run_log/LandCover2024-01-10-18-30-12.log +++ /dev/null @@ -1,14 +0,0 @@ -[01/10/2024 18:30:16] [5692] [INFO]- total:110,block:7 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_0_1024_7168_8192.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:30:30] [5692] [INFO]- total:110,block:7 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_0_1024_7168_8192.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:30:30] [5692] [INFO]- total:110,block:22 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_2048_3072_2048_3072.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:30:46] [5692] [INFO]- total:110,block:22 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_2048_3072_2048_3072.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:30:46] [5692] [INFO]- total:110,block:37 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_3072_4096_7168_8192.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:02] [5692] [INFO]- total:110,block:37 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_3072_4096_7168_8192.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:02] [5692] [INFO]- total:110,block:52 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_5120_6144_2048_3072.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:17] [5692] [INFO]- total:110,block:52 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_5120_6144_2048_3072.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:17] [5692] [INFO]- total:110,block:66 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_6144_7168_6144_7168.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:33] [5692] [INFO]- total:110,block:66 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_6144_7168_6144_7168.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:33] [5692] [INFO]- total:110,block:81 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_8192_9216_1024_2048.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:50] [5692] [INFO]- total:110,block:81 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_8192_9216_1024_2048.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:50] [5692] [INFO]- total:110,block:98 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_9216_10240_8192_9216.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:32:06] [5692] [INFO]- total:110,block:98 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_9216_10240_8192_9216.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) diff --git a/landcover-S-SAR/run_log/LandCover2024-01-10-18-30-13.log b/landcover-S-SAR/run_log/LandCover2024-01-10-18-30-13.log deleted file mode 100644 index cbbd92f..0000000 --- a/landcover-S-SAR/run_log/LandCover2024-01-10-18-30-13.log +++ /dev/null @@ -1,14 +0,0 @@ -[01/10/2024 18:30:16] [19128] [INFO]- total:110,block:8 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_0_1024_8192_9216.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:30:30] [19128] [INFO]- total:110,block:8 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_0_1024_8192_9216.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:30:30] [19128] [INFO]- total:110,block:23 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_2048_3072_3072_4096.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:30:46] [19128] [INFO]- total:110,block:23 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_2048_3072_3072_4096.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:30:46] [19128] [INFO]- total:110,block:38 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_3072_4096_8192_9216.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:02] [19128] [INFO]- total:110,block:38 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_3072_4096_8192_9216.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:02] [19128] [INFO]- total:110,block:53 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_5120_6144_3072_4096.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:18] [19128] [INFO]- total:110,block:53 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_5120_6144_3072_4096.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:18] [19128] [INFO]- total:110,block:68 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_6144_7168_8192_9216.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:33] [19128] [INFO]- total:110,block:68 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_6144_7168_8192_9216.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:34] [19128] [INFO]- total:110,block:82 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_8192_9216_2048_3072.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:50] [19128] [INFO]- total:110,block:82 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_8192_9216_2048_3072.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:50] [19128] [INFO]- total:110,block:97 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_9216_10240_7168_8192.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:32:05] [19128] [INFO]- total:110,block:97 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_9216_10240_7168_8192.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) diff --git a/landcover-S-SAR/run_log/LandCover2024-01-10-18-30-14.log b/landcover-S-SAR/run_log/LandCover2024-01-10-18-30-14.log deleted file mode 100644 index de2d131..0000000 --- a/landcover-S-SAR/run_log/LandCover2024-01-10-18-30-14.log +++ /dev/null @@ -1,14 +0,0 @@ -[01/10/2024 18:30:16] [17908] [INFO]- total:110,block:9 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_0_1024_8926_9950.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:30:30] [17908] [INFO]- total:110,block:9 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_0_1024_8926_9950.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:30:31] [17908] [INFO]- total:110,block:24 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_2048_3072_4096_5120.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:30:47] [17908] [INFO]- total:110,block:24 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_2048_3072_4096_5120.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:30:47] [17908] [INFO]- total:110,block:39 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_3072_4096_8926_9950.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:02] [17908] [INFO]- total:110,block:39 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_3072_4096_8926_9950.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:03] [17908] [INFO]- total:110,block:55 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_5120_6144_5120_6144.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:19] [17908] [INFO]- total:110,block:55 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_5120_6144_5120_6144.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:19] [17908] [INFO]- total:110,block:70 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_7168_8192_0_1024.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:34] [17908] [INFO]- total:110,block:70 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_7168_8192_0_1024.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:35] [17908] [INFO]- total:110,block:85 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_8192_9216_5120_6144.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:50] [17908] [INFO]- total:110,block:85 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_8192_9216_5120_6144.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:51] [17908] [INFO]- total:110,block:100 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_9340_10364_0_1024.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:32:06] [17908] [INFO]- total:110,block:100 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_9340_10364_0_1024.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) diff --git a/landcover-S-SAR/run_log/LandCover2024-01-10-18-30-16.log b/landcover-S-SAR/run_log/LandCover2024-01-10-18-30-16.log deleted file mode 100644 index 047788c..0000000 --- a/landcover-S-SAR/run_log/LandCover2024-01-10-18-30-16.log +++ /dev/null @@ -1,14 +0,0 @@ -[01/10/2024 18:30:16] [16460] [INFO]- total:110,block:10 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_1024_2048_0_1024.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:30:30] [16460] [INFO]- total:110,block:10 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_1024_2048_0_1024.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:30:31] [16460] [INFO]- total:110,block:25 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_2048_3072_5120_6144.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:30:47] [16460] [INFO]- total:110,block:25 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_2048_3072_5120_6144.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:30:47] [16460] [INFO]- total:110,block:40 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_4096_5120_0_1024.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:02] [16460] [INFO]- total:110,block:40 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_4096_5120_0_1024.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:03] [16460] [INFO]- total:110,block:54 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_5120_6144_4096_5120.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:18] [16460] [INFO]- total:110,block:54 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_5120_6144_4096_5120.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:18] [16460] [INFO]- total:110,block:69 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_6144_7168_8926_9950.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:34] [16460] [INFO]- total:110,block:69 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_6144_7168_8926_9950.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:34] [16460] [INFO]- total:110,block:84 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_8192_9216_4096_5120.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:50] [16460] [INFO]- total:110,block:84 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_8192_9216_4096_5120.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:51] [16460] [INFO]- total:110,block:99 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_9216_10240_8926_9950.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:32:06] [16460] [INFO]- total:110,block:99 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_9216_10240_8926_9950.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) diff --git a/landcover-S-SAR/run_log/LandCover2024-01-10-18-30-18.log b/landcover-S-SAR/run_log/LandCover2024-01-10-18-30-18.log deleted file mode 100644 index c61423f..0000000 --- a/landcover-S-SAR/run_log/LandCover2024-01-10-18-30-18.log +++ /dev/null @@ -1,14 +0,0 @@ -[01/10/2024 18:30:18] [14628] [INFO]- total:110,block:11 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_1024_2048_1024_2048.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:30:33] [14628] [INFO]- total:110,block:11 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_1024_2048_1024_2048.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:30:33] [14628] [INFO]- total:110,block:26 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_2048_3072_6144_7168.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:30:49] [14628] [INFO]- total:110,block:26 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_2048_3072_6144_7168.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:30:49] [14628] [INFO]- total:110,block:41 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_4096_5120_1024_2048.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:05] [14628] [INFO]- total:110,block:41 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_4096_5120_1024_2048.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:05] [14628] [INFO]- total:110,block:56 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_5120_6144_6144_7168.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:21] [14628] [INFO]- total:110,block:56 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_5120_6144_6144_7168.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:21] [14628] [INFO]- total:110,block:71 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_7168_8192_1024_2048.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:37] [14628] [INFO]- total:110,block:71 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_7168_8192_1024_2048.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:37] [14628] [INFO]- total:110,block:86 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_8192_9216_6144_7168.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:53] [14628] [INFO]- total:110,block:86 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_8192_9216_6144_7168.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:53] [14628] [INFO]- total:110,block:101 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_9340_10364_1024_2048.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:32:07] [14628] [INFO]- total:110,block:101 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_9340_10364_1024_2048.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) diff --git a/landcover-S-SAR/run_log/LandCover2024-01-10-18-30-20.log b/landcover-S-SAR/run_log/LandCover2024-01-10-18-30-20.log deleted file mode 100644 index afba466..0000000 --- a/landcover-S-SAR/run_log/LandCover2024-01-10-18-30-20.log +++ /dev/null @@ -1,14 +0,0 @@ -[01/10/2024 18:30:20] [6820] [INFO]- total:110,block:12 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_1024_2048_2048_3072.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:30:36] [6820] [INFO]- total:110,block:12 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_1024_2048_2048_3072.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:30:36] [6820] [INFO]- total:110,block:27 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_2048_3072_7168_8192.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:30:52] [6820] [INFO]- total:110,block:27 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_2048_3072_7168_8192.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:30:52] [6820] [INFO]- total:110,block:42 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_4096_5120_2048_3072.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:08] [6820] [INFO]- total:110,block:42 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_4096_5120_2048_3072.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:08] [6820] [INFO]- total:110,block:57 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_5120_6144_7168_8192.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:23] [6820] [INFO]- total:110,block:57 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_5120_6144_7168_8192.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:23] [6820] [INFO]- total:110,block:72 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_7168_8192_2048_3072.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:39] [6820] [INFO]- total:110,block:72 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_7168_8192_2048_3072.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:39] [6820] [INFO]- total:110,block:87 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_8192_9216_7168_8192.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:55] [6820] [INFO]- total:110,block:87 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_8192_9216_7168_8192.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:55] [6820] [INFO]- total:110,block:102 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_9340_10364_2048_3072.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:32:08] [6820] [INFO]- total:110,block:102 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_9340_10364_2048_3072.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) diff --git a/landcover-S-SAR/run_log/LandCover2024-01-10-18-30-22.log b/landcover-S-SAR/run_log/LandCover2024-01-10-18-30-22.log deleted file mode 100644 index 9153e43..0000000 --- a/landcover-S-SAR/run_log/LandCover2024-01-10-18-30-22.log +++ /dev/null @@ -1,14 +0,0 @@ -[01/10/2024 18:30:22] [16528] [INFO]- total:110,block:13 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_1024_2048_3072_4096.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:30:38] [16528] [INFO]- total:110,block:13 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_1024_2048_3072_4096.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:30:38] [16528] [INFO]- total:110,block:28 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_2048_3072_8192_9216.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:30:54] [16528] [INFO]- total:110,block:28 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_2048_3072_8192_9216.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:30:54] [16528] [INFO]- total:110,block:43 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_4096_5120_3072_4096.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:10] [16528] [INFO]- total:110,block:43 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_4096_5120_3072_4096.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:10] [16528] [INFO]- total:110,block:58 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_5120_6144_8192_9216.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:25] [16528] [INFO]- total:110,block:58 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_5120_6144_8192_9216.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:25] [16528] [INFO]- total:110,block:73 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_7168_8192_3072_4096.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:41] [16528] [INFO]- total:110,block:73 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_7168_8192_3072_4096.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:41] [16528] [INFO]- total:110,block:88 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_8192_9216_8192_9216.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:57] [16528] [INFO]- total:110,block:88 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_8192_9216_8192_9216.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:57] [16528] [INFO]- total:110,block:103 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_9340_10364_3072_4096.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:32:09] [16528] [INFO]- total:110,block:103 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_9340_10364_3072_4096.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) diff --git a/landcover-S-SAR/run_log/LandCover2024-01-10-18-30-23.log b/landcover-S-SAR/run_log/LandCover2024-01-10-18-30-23.log deleted file mode 100644 index 1f54657..0000000 --- a/landcover-S-SAR/run_log/LandCover2024-01-10-18-30-23.log +++ /dev/null @@ -1,14 +0,0 @@ -[01/10/2024 18:30:23] [11612] [INFO]- total:110,block:14 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_1024_2048_4096_5120.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:30:39] [11612] [INFO]- total:110,block:14 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_1024_2048_4096_5120.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:30:39] [11612] [INFO]- total:110,block:29 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_2048_3072_8926_9950.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:30:55] [11612] [INFO]- total:110,block:29 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_2048_3072_8926_9950.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:30:55] [11612] [INFO]- total:110,block:44 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_4096_5120_4096_5120.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:11] [11612] [INFO]- total:110,block:44 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_4096_5120_4096_5120.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:11] [11612] [INFO]- total:110,block:59 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_5120_6144_8926_9950.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:26] [11612] [INFO]- total:110,block:59 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_5120_6144_8926_9950.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:27] [11612] [INFO]- total:110,block:74 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_7168_8192_4096_5120.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:42] [11612] [INFO]- total:110,block:74 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_7168_8192_4096_5120.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:42] [11612] [INFO]- total:110,block:89 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_8192_9216_8926_9950.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:31:58] [11612] [INFO]- total:110,block:89 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_8192_9216_8926_9950.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) -[01/10/2024 18:31:58] [11612] [INFO]- total:110,block:104 testing data !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_9340_10364_4096_5120.tif ---from: machineLearning.predict_blok (machineLearning.py:Line108) -[01/10/2024 18:32:10] [11612] [INFO]- total:110,block:104 test data finished !path:D:\micro\SWork\LandCover\Temporary\processing\LandCover\LandCover_9340_10364_4096_5120.tif ---from: machineLearning.predict_blok (machineLearning.py:Line131) diff --git a/leafAreaIndex-S-SAR/LeafAreaIndex.xml b/leafAreaIndex-S-SAR/LeafAreaIndex.xml index 2a0452f..b8414d1 100644 --- a/leafAreaIndex-S-SAR/LeafAreaIndex.xml +++ b/leafAreaIndex-S-SAR/LeafAreaIndex.xml @@ -1,7 +1,7 @@ CSAR_202107275419_0001-0 - D:\micro\SWork\ + D:\613NET\ComputingNode\ftproot\Production\PL_20240507155658_0002\ File ElementAlg @@ -53,7 +53,7 @@ File tar.gz Man - E:\MicroWorkspace\S_SAR\AHV\HJ2E_MYC_QPS_001752_E118.0_N37.7_20230204_SLC_AHV_L10000010458-cal.tar.gz + F:\MicroWorkspace\S_SAR\AHV\HJ2E_MYC_QPS_001752_E118.0_N37.7_20230204_SLC_AHV_L10000010458-cal.tar.gz True False File @@ -81,9 +81,9 @@ 土壤水分产品 土壤水分产品 File - tif + zip Man - E:\MicroWorkspace\S_SAR\AHV\HJ2E_MYC_QPS_001752_E118.0_N37.7_20230204_SLC_AHV_L10000010458-cal-SMC.tif + F:\al_zhongji\S-SAR-data\leafAreaIndex\SSAR_leafAreaIndex_SMC.zip True False File @@ -96,9 +96,9 @@ 叶面积指数实测数据 叶面积指数实测数据 File - csv + zip Man - E:\MicroWorkspace\S_SAR\AHV\laiplus2.csv + F:\al_zhongji\S-SAR-data\leafAreaIndex\SSAR_leafAreaIndex_LAI.zip True False File @@ -111,9 +111,9 @@ NDVI NDVI影像,坐标系要求:WGS84 File - tif + zip Cal - E:\MicroWorkspace\S_SAR\AHV\S2_NDVImed.tif + F:\al_zhongji\S-SAR-data\leafAreaIndex\SSAR_leafAreaIndex_NDVI.zip True False File @@ -141,9 +141,9 @@ 地表覆盖度 地表覆盖度数据,坐标系要求:WGS84 File - tif + zip Cal - E:\MicroWorkspace\S_SAR\AHV\n50_35_2010lc030.tif + F:\al_zhongji\S-SAR-data\leafAreaIndex\SSAR_leafAreaIndex_LandCover.zip True False File @@ -235,7 +235,7 @@ File tar.gz Cal - D:\micro\SWork\LeafAreaIndex\Output\HJ2E_MYC_QPS_001752_E118.0_N37.7_20230204_SLC_AHV_L10000010458-cal-LAI.tar.gz + D:\613NET\ComputingNode\ftproot\Production\PL_20240507155658_0002\LeafAreaIndex\Output\HJ2E_MYC_QPS_001752_E118.0_N37.7_20230204_SLC_AHV_L10000010458-cal-LAI.tar.gz DEFAULT DEFAULT DEFAULT diff --git a/leafAreaIndex-S-SAR/LeafIndexMain.py b/leafAreaIndex-S-SAR/LeafIndexMain.py index dbf2d44..7de625a 100644 --- a/leafAreaIndex-S-SAR/LeafIndexMain.py +++ b/leafAreaIndex-S-SAR/LeafIndexMain.py @@ -127,7 +127,8 @@ class LeafIndexMain: def get_tar_gz_inf(self, tar_gz_path): para_dic = {} name = os.path.split(tar_gz_path)[1].rstrip('.tar.gz') - file_dir = os.path.join(self.__workspace_preprocessing_path, name + '\\') + name_d = name.split('_')[6] + file_dir = os.path.join(self.__workspace_preprocessing_path, name_d + '\\') file.de_targz(tar_gz_path, file_dir) # 元文件字典 para_dic.update(InitPara.get_meta_dic_new(InitPara.get_meta_paths(file_dir, name), name)) diff --git a/leafAreaIndex-S-SAR/baseTool/x64/Release/ImageMatch.obj b/leafAreaIndex-S-SAR/baseTool/x64/Release/ImageMatch.obj index 9644f22..2dffc26 100644 Binary files a/leafAreaIndex-S-SAR/baseTool/x64/Release/ImageMatch.obj and b/leafAreaIndex-S-SAR/baseTool/x64/Release/ImageMatch.obj differ diff --git a/leafAreaIndex-S-SAR/baseTool/x64/Release/OctreeNode.obj b/leafAreaIndex-S-SAR/baseTool/x64/Release/OctreeNode.obj index 898e778..3d22e50 100644 Binary files a/leafAreaIndex-S-SAR/baseTool/x64/Release/OctreeNode.obj and b/leafAreaIndex-S-SAR/baseTool/x64/Release/OctreeNode.obj differ diff --git a/leafAreaIndex-S-SAR/baseTool/x64/Release/RPC_Correct.obj b/leafAreaIndex-S-SAR/baseTool/x64/Release/RPC_Correct.obj index 2564a7d..4b6479f 100644 Binary files a/leafAreaIndex-S-SAR/baseTool/x64/Release/RPC_Correct.obj and b/leafAreaIndex-S-SAR/baseTool/x64/Release/RPC_Correct.obj differ diff --git a/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.Build.CppClean.log b/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.Build.CppClean.log deleted file mode 100644 index 14c26e2..0000000 --- a/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.Build.CppClean.log +++ /dev/null @@ -1,70 +0,0 @@ -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\basetool.obj -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\simptsn.obj -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\sateorbit.obj -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\rpc_correct.obj -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\imagematch.obj -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\test_moudel.obj -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\simorthoprogram.obj -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\octreenode.obj -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\interpolation.obj -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\vc142.pdb -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\concrt140.dll -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\msvcp140.dll -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\msvcp140_1.dll -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\msvcp140_2.dll -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\msvcp140_atomic_wait.dll -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\msvcp140_codecvt_ids.dll -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\vccorlib140.dll -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\vcruntime140.dll -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\vcruntime140_1.dll -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\vcamp140.dll -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\vcomp140.dll -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\simorthoprogram.exe -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\simorthoprogram.pdb -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\simorthoprogram.res -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\boost_filesystem-vc142-mt-x64-1_82.dll -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\gdal.dll -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\zlib1.dll -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\libcrypto-3-x64.dll -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\libssl-3-x64.dll -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\liblzma.dll -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\qhull_r.dll -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\jpeg62.dll -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\tiff.dll -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\geotiff.dll -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\proj.dll -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\sqlite3.dll -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\libcurl.dll -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\libpng16.dll -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\lerc.dll -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\zstd.dll -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\gif.dll -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\netcdf.dll -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\hdf5_hl.dll -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\hdf5.dll -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\libwebp.dll -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\libsharpyuv.dll -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\libpq.dll -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\pcre2-8.dll -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\libexpat.dll -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\libxml2.dll -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\iconv-2.dll -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\geos_c.dll -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\geos.dll -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\json-c.dll -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\openjp2.dll -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\spatialite.dll -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\freexl-1.dll -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\minizip.dll -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\simorthoprogram.tlog\cl.10612.write.1.tlog -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\simorthoprogram.tlog\cl.command.1.tlog -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\simorthoprogram.tlog\cl.read.1.tlog -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\simorthoprogram.tlog\copylocal.read.1u.tlog -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\simorthoprogram.tlog\copylocal.write.1u.tlog -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\simorthoprogram.tlog\link.command.1.tlog -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\simorthoprogram.tlog\link.read.1.tlog -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\simorthoprogram.tlog\link.write.1.tlog -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\simorthoprogram.tlog\rc.command.1.tlog -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\simorthoprogram.tlog\rc.read.1.tlog -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\simorthoprogram.tlog\rc.write.1.tlog -d:\estar-proj\simorthoprogram-orth_gf3-strip-master\simorthoprogram-orth_gf3-strip\x64\release\simorthoprogram.tlog\simorthoprogram.write.1u.tlog diff --git a/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.exe b/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.exe deleted file mode 100644 index 55bce33..0000000 Binary files a/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.exe and /dev/null differ diff --git a/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.exe.recipe b/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.exe.recipe deleted file mode 100644 index d8d2007..0000000 --- a/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.exe.recipe +++ /dev/null @@ -1,11 +0,0 @@ - - - - - D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\SIMOrthoProgram.exe - - - - - - \ No newline at end of file diff --git a/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.log b/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.log index 6218c45..912d2d6 100644 --- a/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.log +++ b/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.log @@ -7,53 +7,53 @@ SateOrbit.cpp SIMOrthoProgram.cpp test_moudel.cpp -D:\estar-proj\Vcpkg\vcpkg\installed\x64-windows\include\Eigen\src\Core\arch\Default\Half.h(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失 (编译源文件 simptsn.cpp) -D:\estar-proj\Vcpkg\vcpkg\installed\x64-windows\include\Eigen\src\Core\arch\Default\Half.h(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失 (编译源文件 baseTool.cpp) -D:\estar-proj\Vcpkg\vcpkg\installed\x64-windows\include\Eigen\src\Core\arch\Default\Half.h(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失 (编译源文件 SIMOrthoProgram.cpp) -D:\estar-proj\Vcpkg\vcpkg\installed\x64-windows\include\Eigen\src\Core\arch\Default\BFloat16.h(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失 (编译源文件 simptsn.cpp) -D:\estar-proj\Vcpkg\vcpkg\installed\x64-windows\include\Eigen\src\Core\arch\Default\BFloat16.h(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失 (编译源文件 baseTool.cpp) -D:\estar-proj\Vcpkg\vcpkg\installed\x64-windows\include\Eigen\src\Core\arch\Default\Half.h(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失 (编译源文件 SateOrbit.cpp) -D:\estar-proj\Vcpkg\vcpkg\installed\x64-windows\include\Eigen\src\Core\arch\Default\BFloat16.h(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失 (编译源文件 SIMOrthoProgram.cpp) -D:\estar-proj\Vcpkg\vcpkg\installed\x64-windows\include\Eigen\src\Core\arch\Default\Half.h(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失 (编译源文件 ImageMatch.cpp) -D:\estar-proj\Vcpkg\vcpkg\installed\x64-windows\include\Eigen\src\Core\arch\Default\Half.h(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失 (编译源文件 test_moudel.cpp) -D:\estar-proj\Vcpkg\vcpkg\installed\x64-windows\include\Eigen\src\Core\arch\Default\BFloat16.h(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失 (编译源文件 SateOrbit.cpp) -D:\estar-proj\Vcpkg\vcpkg\installed\x64-windows\include\Eigen\src\Core\arch\Default\BFloat16.h(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失 (编译源文件 test_moudel.cpp) -D:\estar-proj\Vcpkg\vcpkg\installed\x64-windows\include\Eigen\src\Core\arch\Default\BFloat16.h(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失 (编译源文件 ImageMatch.cpp) D:\estar-proj\Vcpkg\vcpkg\installed\x64-windows\include\Eigen\src\Core\arch\Default\Half.h(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失 (编译源文件 RPC_Correct.cpp) D:\estar-proj\Vcpkg\vcpkg\installed\x64-windows\include\Eigen\src\Core\arch\Default\BFloat16.h(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失 (编译源文件 RPC_Correct.cpp) +D:\estar-proj\Vcpkg\vcpkg\installed\x64-windows\include\Eigen\src\Core\arch\Default\Half.h(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失 (编译源文件 baseTool.cpp) +D:\estar-proj\Vcpkg\vcpkg\installed\x64-windows\include\Eigen\src\Core\arch\Default\Half.h(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失 (编译源文件 test_moudel.cpp) +D:\estar-proj\Vcpkg\vcpkg\installed\x64-windows\include\Eigen\src\Core\arch\Default\BFloat16.h(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失 (编译源文件 baseTool.cpp) +D:\estar-proj\Vcpkg\vcpkg\installed\x64-windows\include\Eigen\src\Core\arch\Default\Half.h(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失 (编译源文件 SateOrbit.cpp) +D:\estar-proj\Vcpkg\vcpkg\installed\x64-windows\include\Eigen\src\Core\arch\Default\Half.h(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失 (编译源文件 simptsn.cpp) +D:\estar-proj\Vcpkg\vcpkg\installed\x64-windows\include\Eigen\src\Core\arch\Default\BFloat16.h(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失 (编译源文件 test_moudel.cpp) +D:\estar-proj\Vcpkg\vcpkg\installed\x64-windows\include\Eigen\src\Core\arch\Default\BFloat16.h(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失 (编译源文件 SateOrbit.cpp) +D:\estar-proj\Vcpkg\vcpkg\installed\x64-windows\include\Eigen\src\Core\arch\Default\BFloat16.h(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失 (编译源文件 simptsn.cpp) +D:\estar-proj\Vcpkg\vcpkg\installed\x64-windows\include\Eigen\src\Core\arch\Default\Half.h(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失 (编译源文件 ImageMatch.cpp) +D:\estar-proj\Vcpkg\vcpkg\installed\x64-windows\include\Eigen\src\Core\arch\Default\Half.h(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失 (编译源文件 SIMOrthoProgram.cpp) +D:\estar-proj\Vcpkg\vcpkg\installed\x64-windows\include\Eigen\src\Core\arch\Default\BFloat16.h(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失 (编译源文件 SIMOrthoProgram.cpp) +D:\estar-proj\Vcpkg\vcpkg\installed\x64-windows\include\Eigen\src\Core\arch\Default\BFloat16.h(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失 (编译源文件 ImageMatch.cpp) D:\estar-proj\Vcpkg\vcpkg\installed\x64-windows\include\Eigen\src\Core\arch\Default\GenericPacketMathFunctions.h(676,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失 (编译源文件 baseTool.cpp) -D:\estar-proj\Vcpkg\vcpkg\installed\x64-windows\include\Eigen\src\Core\arch\Default\GenericPacketMathFunctions.h(676,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失 (编译源文件 simptsn.cpp) -D:\estar-proj\Vcpkg\vcpkg\installed\x64-windows\include\Eigen\src\Core\arch\Default\GenericPacketMathFunctions.h(676,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失 (编译源文件 SIMOrthoProgram.cpp) -D:\estar-proj\Vcpkg\vcpkg\installed\x64-windows\include\Eigen\src\Core\arch\Default\GenericPacketMathFunctions.h(676,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失 (编译源文件 SateOrbit.cpp) -D:\estar-proj\Vcpkg\vcpkg\installed\x64-windows\include\Eigen\src\Core\arch\Default\GenericPacketMathFunctions.h(676,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失 (编译源文件 test_moudel.cpp) -D:\estar-proj\Vcpkg\vcpkg\installed\x64-windows\include\Eigen\src\Core\arch\Default\GenericPacketMathFunctions.h(676,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失 (编译源文件 ImageMatch.cpp) D:\estar-proj\Vcpkg\vcpkg\installed\x64-windows\include\Eigen\src\Core\arch\Default\GenericPacketMathFunctions.h(676,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失 (编译源文件 RPC_Correct.cpp) -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\baseTool.h(257,11): warning C4101: “res”: 未引用的局部变量 (编译源文件 SIMOrthoProgram.cpp) -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\baseTool.h(257,11): warning C4101: “res”: 未引用的局部变量 (编译源文件 SateOrbit.cpp) -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\baseTool.h(257,11): warning C4101: “res”: 未引用的局部变量 (编译源文件 test_moudel.cpp) -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\baseTool.h(257,11): warning C4101: “res”: 未引用的局部变量 (编译源文件 simptsn.cpp) -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\baseTool.h(257,11): warning C4101: “res”: 未引用的局部变量 (编译源文件 RPC_Correct.cpp) -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\test_moudel.cpp(224,31): warning C4129: “R”: 不可识别的字符转义序列 -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\baseTool.h(257,11): warning C4101: “res”: 未引用的局部变量 (编译源文件 baseTool.cpp) -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\simptsn.cpp(466,15): warning C4101: “asfclass”: 未引用的局部变量 -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\baseTool.cpp(500,18): warning C4154: 删除数组表达式;转换到提供的指针 -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\baseTool.h(257,11): warning C4101: “res”: 未引用的局部变量 (编译源文件 ImageMatch.cpp) -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\baseTool.cpp(942,28): warning C4267: “初始化”: 从“size_t”转换到“int”,可能丢失数据 -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\baseTool.cpp(944,47): warning C4267: “初始化”: 从“size_t”转换到“int”,可能丢失数据 -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\simptsn.cpp(1234,7): warning C4101: “temp_r”: 未引用的局部变量 -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\simptsn.cpp(1234,15): warning C4101: “temp_c”: 未引用的局部变量 -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\simptsn.cpp(3157,18): warning C4101: “snr”: 未引用的局部变量 -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\simptsn.cpp(3156,17): warning C4101: “r2”: 未引用的局部变量 -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\simptsn.cpp(3156,37): warning C4101: “c3”: 未引用的局部变量 -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\simptsn.cpp(3157,15): warning C4101: “c”: 未引用的局部变量 -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\simptsn.cpp(3156,33): warning C4101: “c2”: 未引用的局部变量 -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\simptsn.cpp(3156,21): warning C4101: “r3”: 未引用的局部变量 -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\simptsn.cpp(3157,12): warning C4101: “r”: 未引用的局部变量 -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\simptsn.cpp(3314,36): warning C4838: 从“int”转换到“double”需要收缩转换 -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\simptsn.cpp(3314,54): warning C4838: 从“int”转换到“double”需要收缩转换 -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\simptsn.cpp(3315,35): warning C4838: 从“int”转换到“double”需要收缩转换 -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\simptsn.cpp(3315,54): warning C4838: 从“int”转换到“double”需要收缩转换 -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\simptsn.cpp(3339,24): warning C4838: 从“int”转换到“double”需要收缩转换 -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\simptsn.cpp(3340,22): warning C4838: 从“int”转换到“double”需要收缩转换 +D:\estar-proj\Vcpkg\vcpkg\installed\x64-windows\include\Eigen\src\Core\arch\Default\GenericPacketMathFunctions.h(676,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失 (编译源文件 SateOrbit.cpp) +D:\estar-proj\Vcpkg\vcpkg\installed\x64-windows\include\Eigen\src\Core\arch\Default\GenericPacketMathFunctions.h(676,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失 (编译源文件 simptsn.cpp) +D:\estar-proj\Vcpkg\vcpkg\installed\x64-windows\include\Eigen\src\Core\arch\Default\GenericPacketMathFunctions.h(676,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失 (编译源文件 test_moudel.cpp) +D:\estar-proj\Vcpkg\vcpkg\installed\x64-windows\include\Eigen\src\Core\arch\Default\GenericPacketMathFunctions.h(676,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失 (编译源文件 SIMOrthoProgram.cpp) +D:\estar-proj\Vcpkg\vcpkg\installed\x64-windows\include\Eigen\src\Core\arch\Default\GenericPacketMathFunctions.h(676,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失 (编译源文件 ImageMatch.cpp) +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\baseTool.h(257,11): warning C4101: “res”: 未引用的局部变量 (编译源文件 SIMOrthoProgram.cpp) +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\baseTool.h(257,11): warning C4101: “res”: 未引用的局部变量 (编译源文件 test_moudel.cpp) +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\baseTool.h(257,11): warning C4101: “res”: 未引用的局部变量 (编译源文件 SateOrbit.cpp) +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\baseTool.h(257,11): warning C4101: “res”: 未引用的局部变量 (编译源文件 baseTool.cpp) +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\baseTool.h(257,11): warning C4101: “res”: 未引用的局部变量 (编译源文件 RPC_Correct.cpp) +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\baseTool.h(257,11): warning C4101: “res”: 未引用的局部变量 (编译源文件 simptsn.cpp) +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\test_moudel.cpp(224,31): warning C4129: “R”: 不可识别的字符转义序列 +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\baseTool.cpp(500,18): warning C4154: 删除数组表达式;转换到提供的指针 +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\baseTool.cpp(942,28): warning C4267: “初始化”: 从“size_t”转换到“int”,可能丢失数据 +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\baseTool.cpp(944,47): warning C4267: “初始化”: 从“size_t”转换到“int”,可能丢失数据 +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\simptsn.cpp(469,15): warning C4101: “asfclass”: 未引用的局部变量 +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\baseTool.h(257,11): warning C4101: “res”: 未引用的局部变量 (编译源文件 ImageMatch.cpp) +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\simptsn.cpp(1239,7): warning C4101: “temp_r”: 未引用的局部变量 +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\simptsn.cpp(1239,15): warning C4101: “temp_c”: 未引用的局部变量 +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\simptsn.cpp(3170,18): warning C4101: “snr”: 未引用的局部变量 +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\simptsn.cpp(3169,17): warning C4101: “r2”: 未引用的局部变量 +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\simptsn.cpp(3169,37): warning C4101: “c3”: 未引用的局部变量 +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\simptsn.cpp(3170,15): warning C4101: “c”: 未引用的局部变量 +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\simptsn.cpp(3169,33): warning C4101: “c2”: 未引用的局部变量 +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\simptsn.cpp(3169,21): warning C4101: “r3”: 未引用的局部变量 +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\simptsn.cpp(3170,12): warning C4101: “r”: 未引用的局部变量 +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\simptsn.cpp(3327,36): warning C4838: 从“int”转换到“double”需要收缩转换 +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\simptsn.cpp(3327,54): warning C4838: 从“int”转换到“double”需要收缩转换 +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\simptsn.cpp(3328,35): warning C4838: 从“int”转换到“double”需要收缩转换 +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\simptsn.cpp(3328,54): warning C4838: 从“int”转换到“double”需要收缩转换 +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\simptsn.cpp(3352,24): warning C4838: 从“int”转换到“double”需要收缩转换 +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\simptsn.cpp(3353,22): warning C4838: 从“int”转换到“double”需要收缩转换 LINK : 已指定 /LTCG,但不需要生成代码;从链接命令行中移除 /LTCG 以提高链接器性能 - SIMOrthoProgram.vcxproj -> D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\SIMOrthoProgram.exe + SIMOrthoProgram.vcxproj -> D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\SIMOrthoProgram-S-SAR.exe diff --git a/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.obj b/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.obj index 8f90f21..17450ec 100644 Binary files a/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.obj and b/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.obj differ diff --git a/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.pdb b/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.pdb deleted file mode 100644 index 87f4aee..0000000 Binary files a/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.pdb and /dev/null differ diff --git a/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.tlog/CL.13592.write.1.tlog b/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.tlog/CL.13592.write.1.tlog deleted file mode 100644 index 301bb9e..0000000 Binary files a/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.tlog/CL.13592.write.1.tlog and /dev/null differ diff --git a/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.tlog/CL.command.1.tlog b/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.tlog/CL.command.1.tlog deleted file mode 100644 index b1f1d33..0000000 Binary files a/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.tlog/CL.command.1.tlog and /dev/null differ diff --git a/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.tlog/CL.read.1.tlog b/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.tlog/CL.read.1.tlog deleted file mode 100644 index c438d71..0000000 Binary files a/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.tlog/CL.read.1.tlog and /dev/null differ diff --git a/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.tlog/CopyLocal.read.1u.tlog b/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.tlog/CopyLocal.read.1u.tlog deleted file mode 100644 index 8588902..0000000 Binary files a/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.tlog/CopyLocal.read.1u.tlog and /dev/null differ diff --git a/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.tlog/CopyLocal.write.1u.tlog b/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.tlog/CopyLocal.write.1u.tlog deleted file mode 100644 index f1a36ae..0000000 Binary files a/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.tlog/CopyLocal.write.1u.tlog and /dev/null differ diff --git a/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.tlog/SIMOrthoProgram.lastbuildstate b/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.tlog/SIMOrthoProgram.lastbuildstate deleted file mode 100644 index 4772980..0000000 --- a/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.tlog/SIMOrthoProgram.lastbuildstate +++ /dev/null @@ -1,2 +0,0 @@ -PlatformToolSet=v142:VCToolArchitecture=Native32Bit:VCToolsVersion=14.29.30133:TargetPlatformVersion=10.0.19041.0:VcpkgTriplet=x64-windows: -Release|x64|D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\| diff --git a/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.tlog/SIMOrthoProgram.write.1u.tlog b/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.tlog/SIMOrthoProgram.write.1u.tlog deleted file mode 100644 index cd5bbba..0000000 Binary files a/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.tlog/SIMOrthoProgram.write.1u.tlog and /dev/null differ diff --git a/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.tlog/link.command.1.tlog b/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.tlog/link.command.1.tlog deleted file mode 100644 index 565dbeb..0000000 Binary files a/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.tlog/link.command.1.tlog and /dev/null differ diff --git a/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.tlog/link.read.1.tlog b/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.tlog/link.read.1.tlog deleted file mode 100644 index 8d7f566..0000000 Binary files a/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.tlog/link.read.1.tlog and /dev/null differ diff --git a/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.tlog/link.write.1.tlog b/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.tlog/link.write.1.tlog deleted file mode 100644 index dc7e79a..0000000 Binary files a/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.tlog/link.write.1.tlog and /dev/null differ diff --git a/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.tlog/rc.command.1.tlog b/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.tlog/rc.command.1.tlog deleted file mode 100644 index 0190689..0000000 Binary files a/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.tlog/rc.command.1.tlog and /dev/null differ diff --git a/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.tlog/rc.read.1.tlog b/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.tlog/rc.read.1.tlog deleted file mode 100644 index cf06a88..0000000 Binary files a/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.tlog/rc.read.1.tlog and /dev/null differ diff --git a/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.tlog/rc.write.1.tlog b/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.tlog/rc.write.1.tlog deleted file mode 100644 index 136d0c3..0000000 Binary files a/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.tlog/rc.write.1.tlog and /dev/null differ diff --git a/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.vcxproj.FileListAbsolute.txt b/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.vcxproj.FileListAbsolute.txt index 22940bb..a08de7c 100644 --- a/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.vcxproj.FileListAbsolute.txt +++ b/leafAreaIndex-S-SAR/baseTool/x64/Release/SIMOrthoProgram.vcxproj.FileListAbsolute.txt @@ -1,47 +1,47 @@ -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\SIMOrthoProgram.vcxproj.CopyComplete -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\SIMOrthoProgram.exe -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\concrt140.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\msvcp140.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\msvcp140_1.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\msvcp140_2.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\msvcp140_atomic_wait.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\msvcp140_codecvt_ids.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\vccorlib140.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\vcruntime140.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\vcruntime140_1.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\vcamp140.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\vcomp140.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\boost_filesystem-vc142-mt-x64-1_82.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\gdal.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\zlib1.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\libcrypto-3-x64.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\libssl-3-x64.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\liblzma.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\qhull_r.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\jpeg62.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\tiff.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\geotiff.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\proj.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\sqlite3.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\libcurl.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\libpng16.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\Lerc.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\zstd.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\gif.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\netcdf.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\hdf5_hl.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\hdf5.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\libwebp.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\libsharpyuv.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\LIBPQ.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\pcre2-8.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\libexpat.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\libxml2.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\iconv-2.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\geos_c.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\geos.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\json-c.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\openjp2.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\spatialite.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\freexl-1.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\minizip.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\SIMOrthoProgram.vcxproj.CopyComplete +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\SIMOrthoProgram-S-SAR.exe +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\concrt140.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\msvcp140.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\msvcp140_1.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\msvcp140_2.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\msvcp140_atomic_wait.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\msvcp140_codecvt_ids.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\vccorlib140.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\vcruntime140.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\vcruntime140_1.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\vcamp140.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\vcomp140.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\boost_filesystem-vc142-mt-x64-1_82.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\gdal.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\zlib1.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\libcrypto-3-x64.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\libssl-3-x64.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\liblzma.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\qhull_r.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\jpeg62.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\tiff.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\geotiff.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\proj.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\sqlite3.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\libcurl.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\libpng16.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\Lerc.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\zstd.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\gif.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\netcdf.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\hdf5_hl.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\hdf5.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\libwebp.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\libsharpyuv.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\LIBPQ.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\pcre2-8.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\libexpat.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\libxml2.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\iconv-2.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\geos_c.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\geos.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\json-c.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\openjp2.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\spatialite.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\freexl-1.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\minizip.dll diff --git a/leafAreaIndex-S-SAR/baseTool/x64/Release/SateOrbit.obj b/leafAreaIndex-S-SAR/baseTool/x64/Release/SateOrbit.obj index cd95a87..b70006e 100644 Binary files a/leafAreaIndex-S-SAR/baseTool/x64/Release/SateOrbit.obj and b/leafAreaIndex-S-SAR/baseTool/x64/Release/SateOrbit.obj differ diff --git a/leafAreaIndex-S-SAR/baseTool/x64/Release/baseTool.obj b/leafAreaIndex-S-SAR/baseTool/x64/Release/baseTool.obj index a9e889c..c3806e0 100644 Binary files a/leafAreaIndex-S-SAR/baseTool/x64/Release/baseTool.obj and b/leafAreaIndex-S-SAR/baseTool/x64/Release/baseTool.obj differ diff --git a/leafAreaIndex-S-SAR/baseTool/x64/Release/interpolation.obj b/leafAreaIndex-S-SAR/baseTool/x64/Release/interpolation.obj index 1ba4eb4..29cb9cc 100644 Binary files a/leafAreaIndex-S-SAR/baseTool/x64/Release/interpolation.obj and b/leafAreaIndex-S-SAR/baseTool/x64/Release/interpolation.obj differ diff --git a/leafAreaIndex-S-SAR/baseTool/x64/Release/simptsn.obj b/leafAreaIndex-S-SAR/baseTool/x64/Release/simptsn.obj index d16b6ef..7795393 100644 Binary files a/leafAreaIndex-S-SAR/baseTool/x64/Release/simptsn.obj and b/leafAreaIndex-S-SAR/baseTool/x64/Release/simptsn.obj differ diff --git a/leafAreaIndex-S-SAR/baseTool/x64/Release/test_moudel.obj b/leafAreaIndex-S-SAR/baseTool/x64/Release/test_moudel.obj index 18de183..d254e06 100644 Binary files a/leafAreaIndex-S-SAR/baseTool/x64/Release/test_moudel.obj and b/leafAreaIndex-S-SAR/baseTool/x64/Release/test_moudel.obj differ diff --git a/leafAreaIndex-S-SAR/baseTool/x64/Release/vc142.pdb b/leafAreaIndex-S-SAR/baseTool/x64/Release/vc142.pdb index 94a4900..6868526 100644 Binary files a/leafAreaIndex-S-SAR/baseTool/x64/Release/vc142.pdb and b/leafAreaIndex-S-SAR/baseTool/x64/Release/vc142.pdb differ diff --git a/leafAreaIndex-S-SAR/baseTool/x64/Release/vcpkg.applocal.log b/leafAreaIndex-S-SAR/baseTool/x64/Release/vcpkg.applocal.log index 6046b30..fc2d884 100644 --- a/leafAreaIndex-S-SAR/baseTool/x64/Release/vcpkg.applocal.log +++ b/leafAreaIndex-S-SAR/baseTool/x64/Release/vcpkg.applocal.log @@ -1,35 +1,35 @@  -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\boost_filesystem-vc142-mt-x64-1_82.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\gdal.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\zlib1.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\libcrypto-3-x64.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\libssl-3-x64.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\liblzma.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\qhull_r.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\jpeg62.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\tiff.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\geotiff.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\proj.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\sqlite3.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\libcurl.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\libpng16.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\Lerc.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\zstd.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\gif.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\netcdf.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\hdf5_hl.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\hdf5.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\libwebp.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\libsharpyuv.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\LIBPQ.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\pcre2-8.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\libexpat.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\libxml2.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\iconv-2.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\geos_c.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\geos.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\json-c.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\openjp2.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\spatialite.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\freexl-1.dll -D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_gf3-strip\x64\Release\minizip.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\boost_filesystem-vc142-mt-x64-1_82.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\gdal.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\zlib1.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\libcrypto-3-x64.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\libssl-3-x64.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\liblzma.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\qhull_r.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\jpeg62.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\tiff.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\geotiff.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\proj.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\sqlite3.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\libcurl.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\libpng16.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\Lerc.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\zstd.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\gif.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\netcdf.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\hdf5_hl.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\hdf5.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\libwebp.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\libsharpyuv.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\LIBPQ.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\pcre2-8.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\libexpat.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\libxml2.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\iconv-2.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\geos_c.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\geos.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\json-c.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\openjp2.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\spatialite.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\freexl-1.dll +D:\estar-proj\SIMOrthoProgram-Orth_GF3-Strip-master\simorthoprogram-orth_s_sar-strip\x64\Release\minizip.dll diff --git a/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-10-36-58.log b/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-10-36-58.log deleted file mode 100644 index 71e64f2..0000000 --- a/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-10-36-58.log +++ /dev/null @@ -1,37 +0,0 @@ -[12/18/2023 10:36:58] [24376] [INFO]- sysdir: D:\estar-proj\microproduct-S-SAR\leafAreaIndex-S-SAR ---from: LeafIndexMain.check_source (LeafIndexMain.py:Line94) -[12/18/2023 10:36:58] [24376] [INFO]- init algXML succeed ---from: AlgXmlHandle.check_alg_xml (AlgXmlHandle.py:Line319) -[12/18/2023 10:36:58] [24376] [INFO]- create new workspace success! ---from: LeafIndexMain.__create_work_space (LeafIndexMain.py:Line192) -[12/18/2023 10:37:23] [24376] [INFO]- check_source success! ---from: LeafIndexMain.check_source (LeafIndexMain.py:Line124) -[12/18/2023 10:37:38] [24376] [INFO]- scope0:[[117.92941666666667, 37.77280555555556], [118.24280555555556, 37.77280555555556], [117.92941666666667, 37.446361111111116], [118.24280555555556, 37.446361111111116]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[12/18/2023 10:37:38] [24376] [INFO]- scope1:[[117.92941666666667, 37.77280555555556], [118.24280555555556, 37.77280555555556], [117.92941666666667, 37.446361111111116], [118.24280555555556, 37.446361111111116]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[12/18/2023 10:37:38] [24376] [INFO]- scope2:[[116.99999620180613, 39.00008856546379], [119.00000535036983, 39.00008856546379], [116.99999620180613, 36.99998958537168], [119.00000535036983, 36.99998958537168]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[12/18/2023 10:37:38] [24376] [INFO]- scope3:[[113.78551651051885, 40.044486377003494], [120.21426189495888, 40.044486377003494], [113.78551651051885, 34.95723240675342], [120.21426189495888, 34.95723240675342]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[12/18/2023 10:37:38] [24376] [INFO]- scope4:[[117.92941666666667, 37.77280555555556], [118.24280555555556, 37.77280555555556], [117.92941666666667, 37.446361111111116], [118.24280555555556, 37.446361111111116]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[12/18/2023 10:37:38] [24376] [INFO]- scope roi :[(117.92941666666667, 37.446361111111116), (117.92941666666667, 37.77280555555556), (118.24280555555556, 37.77280555555556), (118.24280555555556, 37.446361111111116)] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line245) -[12/18/2023 10:37:38] [24376] [INFO]- create intersect shp success! ---from: PreProcess.preprocessing (PreProcess.py:Line79) -[12/18/2023 10:37:45] [24376] [INFO]- cut HV success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[12/18/2023 10:37:52] [24376] [INFO]- cut LocalIncidenceAngle success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[12/18/2023 10:37:54] [24376] [INFO]- cut NDVI success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[12/18/2023 10:37:54] [24376] [INFO]- cut surface_coverage success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[12/18/2023 10:38:00] [24376] [INFO]- cut soilMeasured success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[12/18/2023 10:38:00] [24376] [INFO]- cut images success! ---from: PreProcess.preprocessing (PreProcess.py:Line84) -[12/18/2023 10:38:00] [24376] [INFO]- resampling HV success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[12/18/2023 10:38:00] [24376] [INFO]- resampling LocalIncidenceAngle success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[12/18/2023 10:38:01] [24376] [INFO]- resampling NDVI success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[12/18/2023 10:38:02] [24376] [INFO]- resampling surface_coverage success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[12/18/2023 10:38:02] [24376] [INFO]- resampling soilMeasured success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[12/18/2023 10:38:02] [24376] [INFO]- preprocess_handle success! ---from: PreProcess.preprocessing (PreProcess.py:Line90) -[12/18/2023 10:38:02] [24376] [INFO]- preprocess_handle success! ---from: LeafIndexMain.preprocess_handle (LeafIndexMain.py:Line218) -[12/18/2023 10:38:02] [24376] [INFO]- progress bar: 30% ---from: LeafIndexMain.preprocess_handle (LeafIndexMain.py:Line219) -[12/18/2023 10:38:06] [24376] [INFO]- trans_tif2mask success, path: D:\micro\SWork\LeafAreaIndex\Temporary\processing\angle_nan_mask.tif ---from: ROIAlg.trans_tif2mask (ROIAlg.py:Line106) -[12/18/2023 10:38:07] [24376] [INFO]- trans_tif2mask success, path: D:\micro\SWork\LeafAreaIndex\Temporary\processing\tif_mask_nan.tif ---from: ROIAlg.trans_tif2mask (ROIAlg.py:Line106) -[12/18/2023 10:38:07] [24376] [ERROR]- run-time error! ---from: LeafIndexMain. (LeafIndexMain.py:Line559) -Traceback (most recent call last): - File "D:/estar-proj/microproduct-S-SAR/leafAreaIndex-S-SAR/LeafIndexMain.py", line 555, in - if main_handler.process_handle(start) is False: - File "D:/estar-proj/microproduct-S-SAR/leafAreaIndex-S-SAR/LeafIndexMain.py", line 537, in process_handle - self.cal_roi() - File "D:/estar-proj/microproduct-S-SAR/leafAreaIndex-S-SAR/LeafIndexMain.py", line 241, in cal_roi - cover_data = ImageHandler.get_data(self.__preprocessed_paras["Covering"]) -KeyError: 'Covering' -[12/18/2023 10:38:07] [24376] [INFO]- running use time: 0:01:09.111417 ---from: LeafIndexMain. (LeafIndexMain.py:Line565) diff --git a/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-10-39-00.log b/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-10-39-00.log deleted file mode 100644 index 310c2e3..0000000 --- a/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-10-39-00.log +++ /dev/null @@ -1,37 +0,0 @@ -[12/18/2023 10:39:00] [8584] [INFO]- sysdir: D:\estar-proj\microproduct-S-SAR\leafAreaIndex-S-SAR ---from: LeafIndexMain.check_source (LeafIndexMain.py:Line94) -[12/18/2023 10:39:00] [8584] [INFO]- init algXML succeed ---from: AlgXmlHandle.check_alg_xml (AlgXmlHandle.py:Line319) -[12/18/2023 10:39:00] [8584] [INFO]- create new workspace success! ---from: LeafIndexMain.__create_work_space (LeafIndexMain.py:Line192) -[12/18/2023 10:39:21] [8584] [INFO]- check_source success! ---from: LeafIndexMain.check_source (LeafIndexMain.py:Line124) -[12/18/2023 10:39:37] [8584] [INFO]- scope0:[[117.92941666666667, 37.77280555555556], [118.24280555555556, 37.77280555555556], [117.92941666666667, 37.446361111111116], [118.24280555555556, 37.446361111111116]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[12/18/2023 10:39:37] [8584] [INFO]- scope1:[[117.92941666666667, 37.77280555555556], [118.24280555555556, 37.77280555555556], [117.92941666666667, 37.446361111111116], [118.24280555555556, 37.446361111111116]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[12/18/2023 10:39:37] [8584] [INFO]- scope2:[[116.99999620180613, 39.00008856546379], [119.00000535036983, 39.00008856546379], [116.99999620180613, 36.99998958537168], [119.00000535036983, 36.99998958537168]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[12/18/2023 10:39:37] [8584] [INFO]- scope3:[[113.78551651051885, 40.044486377003494], [120.21426189495888, 40.044486377003494], [113.78551651051885, 34.95723240675342], [120.21426189495888, 34.95723240675342]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[12/18/2023 10:39:37] [8584] [INFO]- scope4:[[117.92941666666667, 37.77280555555556], [118.24280555555556, 37.77280555555556], [117.92941666666667, 37.446361111111116], [118.24280555555556, 37.446361111111116]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[12/18/2023 10:39:37] [8584] [INFO]- scope roi :[(117.92941666666667, 37.446361111111116), (117.92941666666667, 37.77280555555556), (118.24280555555556, 37.77280555555556), (118.24280555555556, 37.446361111111116)] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line245) -[12/18/2023 10:39:37] [8584] [INFO]- create intersect shp success! ---from: PreProcess.preprocessing (PreProcess.py:Line79) -[12/18/2023 10:39:45] [8584] [INFO]- cut HV success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[12/18/2023 10:39:52] [8584] [INFO]- cut LocalIncidenceAngle success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[12/18/2023 10:39:53] [8584] [INFO]- cut NDVI success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[12/18/2023 10:39:53] [8584] [INFO]- cut Covering success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[12/18/2023 10:40:00] [8584] [INFO]- cut soilMeasured success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[12/18/2023 10:40:00] [8584] [INFO]- cut images success! ---from: PreProcess.preprocessing (PreProcess.py:Line84) -[12/18/2023 10:40:00] [8584] [INFO]- resampling HV success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[12/18/2023 10:40:00] [8584] [INFO]- resampling LocalIncidenceAngle success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[12/18/2023 10:40:02] [8584] [INFO]- resampling NDVI success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[12/18/2023 10:40:02] [8584] [INFO]- resampling Covering success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[12/18/2023 10:40:02] [8584] [INFO]- resampling soilMeasured success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[12/18/2023 10:40:02] [8584] [INFO]- preprocess_handle success! ---from: PreProcess.preprocessing (PreProcess.py:Line90) -[12/18/2023 10:40:02] [8584] [INFO]- preprocess_handle success! ---from: LeafIndexMain.preprocess_handle (LeafIndexMain.py:Line218) -[12/18/2023 10:40:02] [8584] [INFO]- progress bar: 30% ---from: LeafIndexMain.preprocess_handle (LeafIndexMain.py:Line219) -[12/18/2023 10:40:06] [8584] [INFO]- trans_tif2mask success, path: D:\micro\SWork\LeafAreaIndex\Temporary\processing\angle_nan_mask.tif ---from: ROIAlg.trans_tif2mask (ROIAlg.py:Line106) -[12/18/2023 10:40:07] [8584] [INFO]- trans_tif2mask success, path: D:\micro\SWork\LeafAreaIndex\Temporary\processing\tif_mask_nan.tif ---from: ROIAlg.trans_tif2mask (ROIAlg.py:Line106) -[12/18/2023 10:40:08] [8584] [ERROR]- run-time error! ---from: LeafIndexMain. (LeafIndexMain.py:Line559) -Traceback (most recent call last): - File "D:/estar-proj/microproduct-S-SAR/leafAreaIndex-S-SAR/LeafIndexMain.py", line 555, in - if main_handler.process_handle(start) is False: - File "D:/estar-proj/microproduct-S-SAR/leafAreaIndex-S-SAR/LeafIndexMain.py", line 537, in process_handle - self.cal_roi() - File "D:/estar-proj/microproduct-S-SAR/leafAreaIndex-S-SAR/LeafIndexMain.py", line 246, in cal_roi - roi.trans_cover2mask(cover_mask_path, self.__preprocessed_paras["surface_coverage"], cover_id_list) -KeyError: 'surface_coverage' -[12/18/2023 10:40:08] [8584] [INFO]- running use time: 0:01:08.104210 ---from: LeafIndexMain. (LeafIndexMain.py:Line565) diff --git a/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-10-40-48.log b/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-10-40-48.log deleted file mode 100644 index 28a1776..0000000 --- a/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-10-40-48.log +++ /dev/null @@ -1,210 +0,0 @@ -[12/18/2023 10:40:48] [26572] [INFO]- sysdir: D:\estar-proj\microproduct-S-SAR\leafAreaIndex-S-SAR ---from: LeafIndexMain.check_source (LeafIndexMain.py:Line94) -[12/18/2023 10:40:48] [26572] [INFO]- init algXML succeed ---from: AlgXmlHandle.check_alg_xml (AlgXmlHandle.py:Line319) -[12/18/2023 10:40:48] [26572] [INFO]- create new workspace success! ---from: LeafIndexMain.__create_work_space (LeafIndexMain.py:Line192) -[12/18/2023 10:41:10] [26572] [INFO]- check_source success! ---from: LeafIndexMain.check_source (LeafIndexMain.py:Line124) -[12/18/2023 10:41:25] [26572] [INFO]- scope0:[[117.92941666666667, 37.77280555555556], [118.24280555555556, 37.77280555555556], [117.92941666666667, 37.446361111111116], [118.24280555555556, 37.446361111111116]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[12/18/2023 10:41:25] [26572] [INFO]- scope1:[[117.92941666666667, 37.77280555555556], [118.24280555555556, 37.77280555555556], [117.92941666666667, 37.446361111111116], [118.24280555555556, 37.446361111111116]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[12/18/2023 10:41:25] [26572] [INFO]- scope2:[[116.99999620180613, 39.00008856546379], [119.00000535036983, 39.00008856546379], [116.99999620180613, 36.99998958537168], [119.00000535036983, 36.99998958537168]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[12/18/2023 10:41:25] [26572] [INFO]- scope3:[[113.78551651051885, 40.044486377003494], [120.21426189495888, 40.044486377003494], [113.78551651051885, 34.95723240675342], [120.21426189495888, 34.95723240675342]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[12/18/2023 10:41:25] [26572] [INFO]- scope4:[[117.92941666666667, 37.77280555555556], [118.24280555555556, 37.77280555555556], [117.92941666666667, 37.446361111111116], [118.24280555555556, 37.446361111111116]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[12/18/2023 10:41:25] [26572] [INFO]- scope roi :[(117.92941666666667, 37.446361111111116), (117.92941666666667, 37.77280555555556), (118.24280555555556, 37.77280555555556), (118.24280555555556, 37.446361111111116)] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line245) -[12/18/2023 10:41:25] [26572] [INFO]- create intersect shp success! ---from: PreProcess.preprocessing (PreProcess.py:Line79) -[12/18/2023 10:41:32] [26572] [INFO]- cut HV success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[12/18/2023 10:41:40] [26572] [INFO]- cut LocalIncidenceAngle success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[12/18/2023 10:41:41] [26572] [INFO]- cut NDVI success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[12/18/2023 10:41:41] [26572] [INFO]- cut Covering success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[12/18/2023 10:41:46] [26572] [INFO]- cut soilMeasured success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[12/18/2023 10:41:46] [26572] [INFO]- cut images success! ---from: PreProcess.preprocessing (PreProcess.py:Line84) -[12/18/2023 10:41:47] [26572] [INFO]- resampling HV success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[12/18/2023 10:41:47] [26572] [INFO]- resampling LocalIncidenceAngle success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[12/18/2023 10:41:48] [26572] [INFO]- resampling NDVI success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[12/18/2023 10:41:49] [26572] [INFO]- resampling Covering success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[12/18/2023 10:41:49] [26572] [INFO]- resampling soilMeasured success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[12/18/2023 10:41:49] [26572] [INFO]- preprocess_handle success! ---from: PreProcess.preprocessing (PreProcess.py:Line90) -[12/18/2023 10:41:49] [26572] [INFO]- preprocess_handle success! ---from: LeafIndexMain.preprocess_handle (LeafIndexMain.py:Line218) -[12/18/2023 10:41:49] [26572] [INFO]- progress bar: 30% ---from: LeafIndexMain.preprocess_handle (LeafIndexMain.py:Line219) -[12/18/2023 10:41:52] [26572] [INFO]- trans_tif2mask success, path: D:\micro\SWork\LeafAreaIndex\Temporary\processing\angle_nan_mask.tif ---from: ROIAlg.trans_tif2mask (ROIAlg.py:Line106) -[12/18/2023 10:41:54] [26572] [INFO]- trans_tif2mask success, path: D:\micro\SWork\LeafAreaIndex\Temporary\processing\tif_mask_nan.tif ---from: ROIAlg.trans_tif2mask (ROIAlg.py:Line106) -[12/18/2023 10:42:02] [26572] [INFO]- trans_tif2mask success, path: D:\micro\SWork\LeafAreaIndex\Temporary\processing\Ndvi_mask.tif ---from: ROIAlg.trans_tif2mask (ROIAlg.py:Line106) -[12/18/2023 10:42:02] [26572] [INFO]- create masks success! ---from: LeafIndexMain.cal_roi (LeafIndexMain.py:Line258) -[12/18/2023 10:42:03] [26572] [INFO]- combine_mask success, path: D:\micro\SWork\LeafAreaIndex\Temporary\processing\bare_land_mask.tif ---from: ROIAlg.combine_mask (ROIAlg.py:Line145) -[12/18/2023 10:42:05] [26572] [INFO]- combine_mask success, path: D:\micro\SWork\LeafAreaIndex\Temporary\processing\bare_land_mask.tif ---from: ROIAlg.combine_mask (ROIAlg.py:Line145) -[12/18/2023 10:42:06] [26572] [INFO]- combine_mask success, path: D:\micro\SWork\LeafAreaIndex\Temporary\processing\bare_land_mask.tif ---from: ROIAlg.combine_mask (ROIAlg.py:Line145) -[12/18/2023 10:42:06] [26572] [INFO]- combine_mask success! ---from: LeafIndexMain.cal_roi (LeafIndexMain.py:Line265) -[12/18/2023 10:42:07] [26572] [INFO]- cal_roi success, path: D:\micro\SWork\LeafAreaIndex\Temporary\maskcai_localang\LocalIncidenceAngle_preproed.tif ---from: ROIAlg.cal_roi (ROIAlg.py:Line174) -[12/18/2023 10:42:07] [26572] [INFO]- create ROI three image success! ---from: LeafIndexMain.cal_roi (LeafIndexMain.py:Line270) -[12/18/2023 10:42:14] [26572] [INFO]- progress bar: 50% ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line441) -[12/18/2023 10:42:32] [26572] [INFO]- 保留得数据集如下 ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line402) -[12/18/2023 10:42:32] [26572] [INFO]- [0, 1, 118.037315, 37.628621, 0.647, 0.00031600939904479484, 0.0035441595052058497, 0.011499127764024852, 0.07841542092968284] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 10:42:32] [26572] [INFO]- [0, 2, 118.037415, 37.628721, 1.85, 0.0006487838043422757, 0.0037419428016967427, 0.011395231671171424, 0.09455256313545468] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 10:42:32] [26572] [INFO]- [0, 3, 118.037515, 37.628821, 2.548, 0.0011948131671611912, 0.0037569264639858847, 0.01133885210448945, 0.08196406780431668] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 10:42:32] [26572] [INFO]- [0, 4, 118.037615, 37.628921, 4.399, 0.000707945784384138, 0.003653807647491771, 0.011634949928172577, 0.07409728646140408] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 10:42:32] [26572] [INFO]- [0, 5, 118.037715, 37.629021, 3.118, 0.0037282068494295653, 0.003769166641121293, 0.01186657450909232, 0.12197119549468712] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 10:42:32] [26572] [INFO]- [0, 6, 118.037815, 37.629121, 3.045, 0.0033970348320337945, 0.00393355179026171, 0.011545482459535569, 0.21129441012938818] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 10:42:32] [26572] [INFO]- [0, 7, 118.037915, 37.629221, 0.703, 0.0002786121168629772, 0.004000000189989805, 0.010852086990151876, 0.3833015576510886] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 10:42:32] [26572] [INFO]- [0, 8, 118.038015, 37.629321, 1.879, 0.000647142615748583, 0.004000000189989805, 0.01061685162561911, 0.5832591384281347] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 10:42:32] [26572] [INFO]- [0, 9, 118.038115, 37.629421, 3.634, 0.001071519305237607, 0.004000000189989805, 0.01081088441711517, 0.8028442104473527] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 10:42:32] [26572] [INFO]- [0, 10, 118.038215, 37.629521, 3.698, 0.001281814558871049, 0.004000000189989805, 0.010996482277541984, 0.6656071119654325] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 10:42:32] [26572] [INFO]- [0, 11, 118.038315, 37.629621, 2.499, 0.0013689891307007353, 0.003106724709433354, 0.013181755790647901, 0.8254400415369022] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 10:42:32] [26572] [INFO]- [0, 12, 118.038415, 37.629721, 6.474, 0.011617160780585677, 0.0017733913127700855, 0.013708339532676302, 0.7161886968914374] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 10:42:32] [26572] [INFO]- [0, 13, 118.038515, 37.629821, 2.227, 0.007277798045368242, 0.0004444444655544228, 0.014681509339515075, 0.5202048383193252] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 10:42:32] [26572] [INFO]- [0, 26, 118.039815, 37.631121, 1.966, 0.0008375292821268827, 0.0004332647716373573, 0.015016999394621379, 0.5263507707435408] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 10:42:32] [26572] [INFO]- [0, 27, 118.039915, 37.631221, 2.994, 0.0017060823890031242, 0.0015071874763241705, 0.014463746161372573, 1.0328524809928588] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 10:42:32] [26572] [INFO]- [0, 29, 118.040015, 37.631321, 2.125, 0.0007935969681957695, 0.002840520872987439, 0.014409249878407996, 1.1679075368116667] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 10:42:32] [26572] [INFO]- 训练模型 ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line413) -[12/18/2023 10:42:32] [26572] [INFO]- [-31.6, 0.01, 0.001, -5.0, 0.771, -0.028] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line419) -[12/18/2023 10:42:32] [26572] [INFO]- 训练集: -根据误差输出点序 -数量:(16,) -点序 误差值 样点信息 ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line419) -[12/18/2023 10:42:32] [26572] [INFO]- 11 -0.005453507148711106 [0, 12, 118.038415, 37.629721, 6.474, 0.011617160780585677, 0.0017733913127700855, 0.013708339532676302, 0.7161886968914374] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line419) -[12/18/2023 10:42:32] [26572] [INFO]- 12 -0.005157583802476022 [0, 13, 118.038515, 37.629821, 2.227, 0.007277798045368242, 0.0004444444655544228, 0.014681509339515075, 0.5202048383193252] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line419) -[12/18/2023 10:42:32] [26572] [INFO]- 4 -0.0007596055715058951 [0, 5, 118.037715, 37.629021, 3.118, 0.0037282068494295653, 0.003769166641121293, 0.01186657450909232, 0.12197119549468712] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line419) -[12/18/2023 10:42:32] [26572] [INFO]- 5 -0.0004979248675158654 [0, 6, 118.037815, 37.629121, 3.045, 0.0033970348320337945, 0.00393355179026171, 0.011545482459535569, 0.21129441012938818] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line419) -[12/18/2023 10:42:32] [26572] [INFO]- 0 0.00029999229190307215 [0, 1, 118.037315, 37.628621, 0.647, 0.00031600939904479484, 0.0035441595052058497, 0.011499127764024852, 0.07841542092968284] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line419) -[12/18/2023 10:42:32] [26572] [INFO]- 6 0.0003907114075400056 [0, 7, 118.037915, 37.629221, 0.703, 0.0002786121168629772, 0.004000000189989805, 0.010852086990151876, 0.3833015576510886] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line419) -[12/18/2023 10:42:32] [26572] [INFO]- 10 0.001010232291167542 [0, 11, 118.038315, 37.629621, 2.499, 0.0013689891307007353, 0.003106724709433354, 0.013181755790647901, 0.8254400415369022] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line419) -[12/18/2023 10:42:32] [26572] [INFO]- 13 0.0010341907153155092 [0, 26, 118.039815, 37.631121, 1.966, 0.0008375292821268827, 0.0004332647716373573, 0.015016999394621379, 0.5263507707435408] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line419) -[12/18/2023 10:42:32] [26572] [INFO]- 1 0.0011125832492330258 [0, 2, 118.037415, 37.628721, 1.85, 0.0006487838043422757, 0.0037419428016967427, 0.011395231671171424, 0.09455256313545468] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line419) -[12/18/2023 10:42:32] [26572] [INFO]- 7 0.0011418503831524336 [0, 8, 118.038015, 37.629321, 1.879, 0.000647142615748583, 0.004000000189989805, 0.01061685162561911, 0.5832591384281347] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line419) -[12/18/2023 10:42:32] [26572] [INFO]- 14 0.0011443628687675942 [0, 27, 118.039915, 37.631221, 2.994, 0.0017060823890031242, 0.0015071874763241705, 0.014463746161372573, 1.0328524809928588] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line419) -[12/18/2023 10:42:32] [26572] [INFO]- 15 0.0012295162377183528 [0, 29, 118.040015, 37.631321, 2.125, 0.0007935969681957695, 0.002840520872987439, 0.014409249878407996, 1.1679075368116667] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line419) -[12/18/2023 10:42:32] [26572] [INFO]- 2 0.0012311144700446087 [0, 3, 118.037515, 37.628821, 2.548, 0.0011948131671611912, 0.0037569264639858847, 0.01133885210448945, 0.08196406780431668] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line419) -[12/18/2023 10:42:32] [26572] [INFO]- 9 0.0022390310865591945 [0, 10, 118.038215, 37.629521, 3.698, 0.001281814558871049, 0.004000000189989805, 0.010996482277541984, 0.6656071119654325] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line419) -[12/18/2023 10:42:32] [26572] [INFO]- 8 0.0023883992911094996 [0, 9, 118.038115, 37.629421, 3.634, 0.001071519305237607, 0.004000000189989805, 0.01081088441711517, 0.8028442104473527] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line419) -[12/18/2023 10:42:32] [26572] [INFO]- 3 0.003480287880295174 [0, 4, 118.037615, 37.628921, 4.399, 0.000707945784384138, 0.003653807647491771, 0.011634949928172577, 0.07409728646140408] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line419) -[12/18/2023 10:42:32] [26572] [INFO]- -误差点序输出结束 - ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line419) -[12/18/2023 10:42:32] [26572] [INFO]- 模型初值: [-31.6, 0.01, 0.001, -5.0, 0.771, -0.028] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line420) -[12/18/2023 10:42:32] [26572] [INFO]- 训练得到的模型系数: [ 9.52152118e-04 -1.12703401e+00 1.08788416e-01 -5.73520734e+02 - -4.58677874e-01 -2.82267478e-04] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line421) -[12/18/2023 10:44:19] [26572] [INFO]- mask data image success! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line450) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:0 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:1 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:2 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:3 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:4 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:5 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:6 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:7 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:8 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:9 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:10 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:11 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:12 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:13 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:14 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:15 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:16 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:17 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:18 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:19 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:20 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:21 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:22 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:23 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:24 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:25 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:26 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:27 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:28 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:29 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:30 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:31 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:32 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:33 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:34 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:35 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:36 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:37 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:38 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:39 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:40 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:41 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:42 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:43 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:44 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:45 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:46 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:47 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:48 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:49 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:50 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:51 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:52 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:53 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:54 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:55 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:56 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:57 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:58 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:59 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:60 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:61 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:62 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:63 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:64 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:65 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:66 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:67 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:68 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:69 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:70 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:71 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:72 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:73 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:74 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:75 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:76 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:77 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:78 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:79 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:80 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:81 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:82 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:83 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:84 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:85 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:86 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:87 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:88 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:89 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:90 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:91 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:92 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:93 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:94 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:95 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:96 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:97 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:98 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:99 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:100 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:101 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:102 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:103 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:104 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:105 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:106 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:107 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:108 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:22] [26572] [INFO]- total:110, block:109 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:44:28] [26572] [INFO]- all img cal LeafIndex success! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line477) -[12/18/2023 10:44:28] [26572] [INFO]- progress bar: 80% ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line478) -[12/18/2023 10:44:31] [26572] [INFO]- trans_tif2mask success, path: D:\micro\SWork\LeafAreaIndex\Temporary\processing\angle_nan_mask.tif ---from: ROIAlg.trans_tif2mask (ROIAlg.py:Line106) -[12/18/2023 10:44:33] [26572] [INFO]- trans_tif2mask success, path: D:\micro\SWork\LeafAreaIndex\Temporary\processing\tif_mask_nan.tif ---from: ROIAlg.trans_tif2mask (ROIAlg.py:Line106) -[12/18/2023 10:44:42] [26572] [INFO]- trans_tif2mask success, path: D:\micro\SWork\LeafAreaIndex\Temporary\processing\Ndvi_mask.tif ---from: ROIAlg.trans_tif2mask (ROIAlg.py:Line106) -[12/18/2023 10:44:42] [26572] [INFO]- create masks success! ---from: LeafIndexMain.cal_roi (LeafIndexMain.py:Line258) -[12/18/2023 10:44:43] [26572] [INFO]- combine_mask success, path: D:\micro\SWork\LeafAreaIndex\Temporary\processing\bare_land_mask.tif ---from: ROIAlg.combine_mask (ROIAlg.py:Line145) -[12/18/2023 10:44:44] [26572] [INFO]- combine_mask success, path: D:\micro\SWork\LeafAreaIndex\Temporary\processing\bare_land_mask.tif ---from: ROIAlg.combine_mask (ROIAlg.py:Line145) -[12/18/2023 10:44:45] [26572] [INFO]- combine_mask success, path: D:\micro\SWork\LeafAreaIndex\Temporary\processing\bare_land_mask.tif ---from: ROIAlg.combine_mask (ROIAlg.py:Line145) -[12/18/2023 10:44:45] [26572] [INFO]- combine_mask success! ---from: LeafIndexMain.cal_roi (LeafIndexMain.py:Line265) -[12/18/2023 10:44:46] [26572] [INFO]- cal_roi success, path: D:\micro\SWork\LeafAreaIndex\Temporary\maskcai_localang\LocalIncidenceAngle_preproed.tif ---from: ROIAlg.cal_roi (ROIAlg.py:Line174) -[12/18/2023 10:44:46] [26572] [INFO]- create ROI three image success! ---from: LeafIndexMain.cal_roi (LeafIndexMain.py:Line270) -[12/18/2023 10:44:47] [26572] [INFO]- cal_roi success, path: D:\micro\SWork\LeafAreaIndex\Temporary\processing\product\HJ2E_MYC_QPS_001752_E118.0_N37.7_20230204_SLC_AHV_L10000010458-cal-LAI.tif ---from: ROIAlg.cal_roi (ROIAlg.py:Line174) -[12/18/2023 10:44:47] [26572] [INFO]- block_process finished! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line493) -[12/18/2023 10:45:18] [26572] [INFO]- process_handle success! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line533) -[12/18/2023 10:45:18] [26572] [INFO]- progress bar: 100% ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line534) -[12/18/2023 10:45:18] [26572] [INFO]- successful production of LeafAreaIndex products! ---from: LeafIndexMain. (LeafIndexMain.py:Line557) -[12/18/2023 10:45:18] [26572] [INFO]- running use time: 0:04:29.783088 ---from: LeafIndexMain. (LeafIndexMain.py:Line565) diff --git a/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-10-44-24.log b/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-10-44-24.log deleted file mode 100644 index 2b4572f..0000000 --- a/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-10-44-24.log +++ /dev/null @@ -1,53 +0,0 @@ -[12/18/2023 10:44:24] [10660] [INFO]- block:0 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:24] [10660] [INFO]- block:1 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:24] [10660] [INFO]- block:2 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:24] [10660] [INFO]- block:3 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:24] [10660] [INFO]- block:4 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:25] [10660] [INFO]- block:5 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:25] [10660] [INFO]- block:6 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:25] [10660] [INFO]- block:7 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:25] [10660] [INFO]- block:8 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:25] [10660] [INFO]- block:9 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:25] [10660] [INFO]- block:10 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:25] [10660] [INFO]- block:11 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:25] [10660] [INFO]- block:12 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:25] [10660] [INFO]- block:13 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:25] [10660] [INFO]- block:15 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:25] [10660] [INFO]- block:17 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:25] [10660] [INFO]- block:19 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:25] [10660] [INFO]- block:21 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:25] [10660] [INFO]- block:23 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:25] [10660] [INFO]- block:24 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:25] [10660] [INFO]- block:26 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:25] [10660] [INFO]- block:28 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:25] [10660] [INFO]- block:30 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:25] [10660] [INFO]- block:32 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:25] [10660] [INFO]- block:34 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:26] [10660] [INFO]- block:35 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:26] [10660] [INFO]- block:37 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:26] [10660] [INFO]- block:39 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:26] [10660] [INFO]- block:41 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:26] [10660] [INFO]- block:43 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:26] [10660] [INFO]- block:45 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:26] [10660] [INFO]- block:46 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:26] [10660] [INFO]- block:49 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:26] [10660] [INFO]- block:52 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:26] [10660] [INFO]- block:55 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:26] [10660] [INFO]- block:59 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:26] [10660] [INFO]- block:62 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:26] [10660] [INFO]- block:65 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:26] [10660] [INFO]- block:69 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:26] [10660] [INFO]- block:72 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:26] [10660] [INFO]- block:75 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:26] [10660] [INFO]- block:78 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:27] [10660] [INFO]- block:79 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:27] [10660] [INFO]- block:82 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:27] [10660] [INFO]- block:85 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:27] [10660] [INFO]- block:89 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:27] [10660] [INFO]- block:90 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:27] [10660] [INFO]- block:93 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:27] [10660] [INFO]- block:97 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:27] [10660] [INFO]- block:100 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:27] [10660] [INFO]- block:102 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:27] [10660] [INFO]- block:105 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:27] [10660] [INFO]- block:109 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) diff --git a/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-10-44-25.log b/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-10-44-25.log deleted file mode 100644 index db09816..0000000 --- a/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-10-44-25.log +++ /dev/null @@ -1,35 +0,0 @@ -[12/18/2023 10:44:25] [13268] [INFO]- block:14 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:25] [13268] [INFO]- block:16 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:25] [13268] [INFO]- block:18 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:25] [13268] [INFO]- block:20 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:25] [13268] [INFO]- block:22 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:25] [13268] [INFO]- block:25 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:25] [13268] [INFO]- block:27 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:25] [13268] [INFO]- block:29 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:25] [13268] [INFO]- block:31 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:26] [13268] [INFO]- block:33 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:26] [13268] [INFO]- block:36 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:26] [13268] [INFO]- block:38 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:26] [13268] [INFO]- block:40 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:26] [13268] [INFO]- block:42 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:26] [13268] [INFO]- block:44 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:26] [13268] [INFO]- block:47 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:26] [13268] [INFO]- block:50 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:26] [13268] [INFO]- block:53 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:26] [13268] [INFO]- block:56 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:26] [13268] [INFO]- block:57 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:26] [13268] [INFO]- block:60 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:26] [13268] [INFO]- block:63 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:26] [13268] [INFO]- block:66 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:26] [13268] [INFO]- block:70 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:26] [13268] [INFO]- block:73 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:26] [13268] [INFO]- block:76 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:27] [13268] [INFO]- block:80 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:27] [13268] [INFO]- block:83 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:27] [13268] [INFO]- block:86 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:27] [13268] [INFO]- block:88 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:27] [13268] [INFO]- block:92 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:27] [13268] [INFO]- block:95 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:27] [13268] [INFO]- block:99 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:27] [13268] [INFO]- block:103 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:27] [13268] [INFO]- block:107 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) diff --git a/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-10-44-26.log b/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-10-44-26.log deleted file mode 100644 index 121ae72..0000000 --- a/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-10-44-26.log +++ /dev/null @@ -1,19 +0,0 @@ -[12/18/2023 10:44:26] [13808] [INFO]- block:48 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:26] [13808] [INFO]- block:51 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:26] [13808] [INFO]- block:54 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:26] [13808] [INFO]- block:58 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:26] [13808] [INFO]- block:61 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:26] [13808] [INFO]- block:64 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:26] [13808] [INFO]- block:67 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:26] [13808] [INFO]- block:68 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:26] [13808] [INFO]- block:71 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:26] [13808] [INFO]- block:74 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:27] [13808] [INFO]- block:77 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:27] [13808] [INFO]- block:81 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:27] [13808] [INFO]- block:84 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:27] [13808] [INFO]- block:87 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:27] [13808] [INFO]- block:91 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:27] [13808] [INFO]- block:94 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:27] [13808] [INFO]- block:98 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:27] [13808] [INFO]- block:104 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:27] [13808] [INFO]- block:108 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) diff --git a/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-10-44-27.log b/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-10-44-27.log deleted file mode 100644 index 82a3afd..0000000 --- a/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-10-44-27.log +++ /dev/null @@ -1,3 +0,0 @@ -[12/18/2023 10:44:27] [23192] [INFO]- block:96 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:27] [23192] [INFO]- block:101 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:44:27] [23192] [INFO]- block:106 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) diff --git a/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-10-53-37.log b/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-10-53-37.log deleted file mode 100644 index c99cd25..0000000 --- a/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-10-53-37.log +++ /dev/null @@ -1,207 +0,0 @@ -[12/18/2023 10:53:37] [19824] [INFO]- sysdir: D:\estar-proj\microproduct-S-SAR\leafAreaIndex-S-SAR ---from: LeafIndexMain.check_source (LeafIndexMain.py:Line94) -[12/18/2023 10:53:37] [19824] [INFO]- init algXML succeed ---from: AlgXmlHandle.check_alg_xml (AlgXmlHandle.py:Line319) -[12/18/2023 10:53:37] [19824] [INFO]- create new workspace success! ---from: LeafIndexMain.__create_work_space (LeafIndexMain.py:Line192) -[12/18/2023 10:53:59] [19824] [INFO]- check_source success! ---from: LeafIndexMain.check_source (LeafIndexMain.py:Line124) -[12/18/2023 10:54:14] [19824] [INFO]- scope0:[[117.92941666666667, 37.77280555555556], [118.24280555555556, 37.77280555555556], [117.92941666666667, 37.446361111111116], [118.24280555555556, 37.446361111111116]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[12/18/2023 10:54:14] [19824] [INFO]- scope1:[[117.92941666666667, 37.77280555555556], [118.24280555555556, 37.77280555555556], [117.92941666666667, 37.446361111111116], [118.24280555555556, 37.446361111111116]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[12/18/2023 10:54:14] [19824] [INFO]- scope2:[[116.99999620180613, 39.00008856546379], [119.00000535036983, 39.00008856546379], [116.99999620180613, 36.99998958537168], [119.00000535036983, 36.99998958537168]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[12/18/2023 10:54:14] [19824] [INFO]- scope3:[[113.78551651051885, 40.044486377003494], [120.21426189495888, 40.044486377003494], [113.78551651051885, 34.95723240675342], [120.21426189495888, 34.95723240675342]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[12/18/2023 10:54:14] [19824] [INFO]- scope4:[[117.92941666666667, 37.77280555555556], [118.24280555555556, 37.77280555555556], [117.92941666666667, 37.446361111111116], [118.24280555555556, 37.446361111111116]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[12/18/2023 10:54:14] [19824] [INFO]- scope roi :[(117.92941666666667, 37.446361111111116), (117.92941666666667, 37.77280555555556), (118.24280555555556, 37.77280555555556), (118.24280555555556, 37.446361111111116)] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line245) -[12/18/2023 10:54:14] [19824] [INFO]- create intersect shp success! ---from: PreProcess.preprocessing (PreProcess.py:Line79) -[12/18/2023 10:54:23] [19824] [INFO]- cut HV success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[12/18/2023 10:54:30] [19824] [INFO]- cut LocalIncidenceAngle success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[12/18/2023 10:54:31] [19824] [INFO]- cut NDVI success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[12/18/2023 10:54:31] [19824] [INFO]- cut Covering success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[12/18/2023 10:54:37] [19824] [INFO]- cut soilMeasured success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[12/18/2023 10:54:37] [19824] [INFO]- cut images success! ---from: PreProcess.preprocessing (PreProcess.py:Line84) -[12/18/2023 10:54:37] [19824] [INFO]- resampling HV success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[12/18/2023 10:54:38] [19824] [INFO]- resampling LocalIncidenceAngle success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[12/18/2023 10:54:39] [19824] [INFO]- resampling NDVI success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[12/18/2023 10:54:39] [19824] [INFO]- resampling Covering success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[12/18/2023 10:54:40] [19824] [INFO]- resampling soilMeasured success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[12/18/2023 10:54:40] [19824] [INFO]- preprocess_handle success! ---from: PreProcess.preprocessing (PreProcess.py:Line90) -[12/18/2023 10:54:40] [19824] [INFO]- preprocess_handle success! ---from: LeafIndexMain.preprocess_handle (LeafIndexMain.py:Line218) -[12/18/2023 10:54:40] [19824] [INFO]- progress bar: 30% ---from: LeafIndexMain.preprocess_handle (LeafIndexMain.py:Line219) -[12/18/2023 10:54:44] [19824] [INFO]- trans_tif2mask success, path: D:\micro\SWork\LeafAreaIndex\Temporary\processing\angle_nan_mask.tif ---from: ROIAlg.trans_tif2mask (ROIAlg.py:Line106) -[12/18/2023 10:54:46] [19824] [INFO]- trans_tif2mask success, path: D:\micro\SWork\LeafAreaIndex\Temporary\processing\tif_mask_nan.tif ---from: ROIAlg.trans_tif2mask (ROIAlg.py:Line106) -[12/18/2023 10:54:55] [19824] [INFO]- trans_tif2mask success, path: D:\micro\SWork\LeafAreaIndex\Temporary\processing\Ndvi_mask.tif ---from: ROIAlg.trans_tif2mask (ROIAlg.py:Line106) -[12/18/2023 10:54:56] [19824] [INFO]- create masks success! ---from: LeafIndexMain.cal_roi (LeafIndexMain.py:Line258) -[12/18/2023 10:54:57] [19824] [INFO]- combine_mask success, path: D:\micro\SWork\LeafAreaIndex\Temporary\processing\bare_land_mask.tif ---from: ROIAlg.combine_mask (ROIAlg.py:Line145) -[12/18/2023 10:54:58] [19824] [INFO]- combine_mask success, path: D:\micro\SWork\LeafAreaIndex\Temporary\processing\bare_land_mask.tif ---from: ROIAlg.combine_mask (ROIAlg.py:Line145) -[12/18/2023 10:54:59] [19824] [INFO]- combine_mask success, path: D:\micro\SWork\LeafAreaIndex\Temporary\processing\bare_land_mask.tif ---from: ROIAlg.combine_mask (ROIAlg.py:Line145) -[12/18/2023 10:54:59] [19824] [INFO]- combine_mask success! ---from: LeafIndexMain.cal_roi (LeafIndexMain.py:Line265) -[12/18/2023 10:55:00] [19824] [INFO]- cal_roi success, path: D:\micro\SWork\LeafAreaIndex\Temporary\maskcai_localang\LocalIncidenceAngle_preproed.tif ---from: ROIAlg.cal_roi (ROIAlg.py:Line174) -[12/18/2023 10:55:00] [19824] [INFO]- create ROI three image success! ---from: LeafIndexMain.cal_roi (LeafIndexMain.py:Line270) -[12/18/2023 10:55:07] [19824] [INFO]- progress bar: 50% ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line441) -[12/18/2023 10:55:25] [19824] [INFO]- 保留得数据集如下 ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line402) -[12/18/2023 10:55:25] [19824] [INFO]- [0, 1, 118.037315, 37.628621, 0.647, 0.00031600939904479484, 0.0035441595052058497, 0.011499127764024852, 0.07841542092968284] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 10:55:25] [19824] [INFO]- [0, 2, 118.037415, 37.628721, 1.85, 0.0006487838043422757, 0.0037419428016967427, 0.011395231671171424, 0.09455256313545468] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 10:55:25] [19824] [INFO]- [0, 3, 118.037515, 37.628821, 2.548, 0.0011948131671611912, 0.0037569264639858847, 0.01133885210448945, 0.08196406780431668] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 10:55:25] [19824] [INFO]- [0, 4, 118.037615, 37.628921, 4.399, 0.000707945784384138, 0.003653807647491771, 0.011634949928172577, 0.07409728646140408] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 10:55:25] [19824] [INFO]- [0, 5, 118.037715, 37.629021, 3.118, 0.0037282068494295653, 0.003769166641121293, 0.01186657450909232, 0.12197119549468712] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 10:55:25] [19824] [INFO]- [0, 6, 118.037815, 37.629121, 3.045, 0.0033970348320337945, 0.00393355179026171, 0.011545482459535569, 0.21129441012938818] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 10:55:25] [19824] [INFO]- [0, 7, 118.037915, 37.629221, 0.703, 0.0002786121168629772, 0.004000000189989805, 0.010852086990151876, 0.3833015576510886] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 10:55:25] [19824] [INFO]- [0, 8, 118.038015, 37.629321, 1.879, 0.000647142615748583, 0.004000000189989805, 0.01061685162561911, 0.5832591384281347] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 10:55:25] [19824] [INFO]- [0, 9, 118.038115, 37.629421, 3.634, 0.001071519305237607, 0.004000000189989805, 0.01081088441711517, 0.8028442104473527] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 10:55:25] [19824] [INFO]- [0, 10, 118.038215, 37.629521, 3.698, 0.001281814558871049, 0.004000000189989805, 0.010996482277541984, 0.6656071119654325] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 10:55:25] [19824] [INFO]- [0, 11, 118.038315, 37.629621, 2.499, 0.0013689891307007353, 0.003106724709433354, 0.013181755790647901, 0.8254400415369022] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 10:55:25] [19824] [INFO]- [0, 12, 118.038415, 37.629721, 6.474, 0.011617160780585677, 0.0017733913127700855, 0.013708339532676302, 0.7161886968914374] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 10:55:25] [19824] [INFO]- [0, 13, 118.038515, 37.629821, 2.227, 0.007277798045368242, 0.0004444444655544228, 0.014681509339515075, 0.5202048383193252] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 10:55:25] [19824] [INFO]- [0, 26, 118.039815, 37.631121, 1.966, 0.0008375292821268827, 0.0004332647716373573, 0.015016999394621379, 0.5263507707435408] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 10:55:25] [19824] [INFO]- [0, 27, 118.039915, 37.631221, 2.994, 0.0017060823890031242, 0.0015071874763241705, 0.014463746161372573, 1.0328524809928588] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 10:55:25] [19824] [INFO]- [0, 29, 118.040015, 37.631321, 2.125, 0.0007935969681957695, 0.002840520872987439, 0.014409249878407996, 1.1679075368116667] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 10:55:25] [19824] [INFO]- 训练模型 ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line413) -[12/18/2023 10:55:25] [19824] [INFO]- [-31.6, 0.01, 0.001, -5.0, 0.771, -0.028] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line419) -[12/18/2023 10:55:25] [19824] [INFO]- 训练集: -根据误差输出点序 -数量:(16,) -点序 误差值 样点信息 ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line419) -[12/18/2023 10:55:25] [19824] [INFO]- 11 -0.005453507148711106 [0, 12, 118.038415, 37.629721, 6.474, 0.011617160780585677, 0.0017733913127700855, 0.013708339532676302, 0.7161886968914374] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line419) -[12/18/2023 10:55:25] [19824] [INFO]- 12 -0.005157583802476022 [0, 13, 118.038515, 37.629821, 2.227, 0.007277798045368242, 0.0004444444655544228, 0.014681509339515075, 0.5202048383193252] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line419) -[12/18/2023 10:55:25] [19824] [INFO]- 4 -0.0007596055715058951 [0, 5, 118.037715, 37.629021, 3.118, 0.0037282068494295653, 0.003769166641121293, 0.01186657450909232, 0.12197119549468712] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line419) -[12/18/2023 10:55:25] [19824] [INFO]- 5 -0.0004979248675158654 [0, 6, 118.037815, 37.629121, 3.045, 0.0033970348320337945, 0.00393355179026171, 0.011545482459535569, 0.21129441012938818] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line419) -[12/18/2023 10:55:25] [19824] [INFO]- 0 0.00029999229190307215 [0, 1, 118.037315, 37.628621, 0.647, 0.00031600939904479484, 0.0035441595052058497, 0.011499127764024852, 0.07841542092968284] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line419) -[12/18/2023 10:55:25] [19824] [INFO]- 6 0.0003907114075400056 [0, 7, 118.037915, 37.629221, 0.703, 0.0002786121168629772, 0.004000000189989805, 0.010852086990151876, 0.3833015576510886] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line419) -[12/18/2023 10:55:25] [19824] [INFO]- 10 0.001010232291167542 [0, 11, 118.038315, 37.629621, 2.499, 0.0013689891307007353, 0.003106724709433354, 0.013181755790647901, 0.8254400415369022] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line419) -[12/18/2023 10:55:25] [19824] [INFO]- 13 0.0010341907153155092 [0, 26, 118.039815, 37.631121, 1.966, 0.0008375292821268827, 0.0004332647716373573, 0.015016999394621379, 0.5263507707435408] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line419) -[12/18/2023 10:55:25] [19824] [INFO]- 1 0.0011125832492330258 [0, 2, 118.037415, 37.628721, 1.85, 0.0006487838043422757, 0.0037419428016967427, 0.011395231671171424, 0.09455256313545468] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line419) -[12/18/2023 10:55:25] [19824] [INFO]- 7 0.0011418503831524336 [0, 8, 118.038015, 37.629321, 1.879, 0.000647142615748583, 0.004000000189989805, 0.01061685162561911, 0.5832591384281347] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line419) -[12/18/2023 10:55:25] [19824] [INFO]- 14 0.0011443628687675942 [0, 27, 118.039915, 37.631221, 2.994, 0.0017060823890031242, 0.0015071874763241705, 0.014463746161372573, 1.0328524809928588] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line419) -[12/18/2023 10:55:25] [19824] [INFO]- 15 0.0012295162377183528 [0, 29, 118.040015, 37.631321, 2.125, 0.0007935969681957695, 0.002840520872987439, 0.014409249878407996, 1.1679075368116667] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line419) -[12/18/2023 10:55:25] [19824] [INFO]- 2 0.0012311144700446087 [0, 3, 118.037515, 37.628821, 2.548, 0.0011948131671611912, 0.0037569264639858847, 0.01133885210448945, 0.08196406780431668] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line419) -[12/18/2023 10:55:25] [19824] [INFO]- 9 0.0022390310865591945 [0, 10, 118.038215, 37.629521, 3.698, 0.001281814558871049, 0.004000000189989805, 0.010996482277541984, 0.6656071119654325] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line419) -[12/18/2023 10:55:25] [19824] [INFO]- 8 0.0023883992911094996 [0, 9, 118.038115, 37.629421, 3.634, 0.001071519305237607, 0.004000000189989805, 0.01081088441711517, 0.8028442104473527] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line419) -[12/18/2023 10:55:25] [19824] [INFO]- 3 0.003480287880295174 [0, 4, 118.037615, 37.628921, 4.399, 0.000707945784384138, 0.003653807647491771, 0.011634949928172577, 0.07409728646140408] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line419) -[12/18/2023 10:55:25] [19824] [INFO]- -误差点序输出结束 - ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line419) -[12/18/2023 10:57:12] [19824] [INFO]- mask data image success! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line450) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:0 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:1 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:2 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:3 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:4 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:5 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:6 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:7 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:8 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:9 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:10 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:11 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:12 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:13 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:14 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:15 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:16 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:17 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:18 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:19 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:20 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:21 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:22 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:23 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:24 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:25 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:26 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:27 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:28 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:29 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:30 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:31 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:32 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:33 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:34 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:35 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:36 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:37 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:38 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:39 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:40 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:41 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:42 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:43 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:44 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:45 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:46 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:47 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:48 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:49 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:50 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:51 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:52 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:53 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:54 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:55 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:56 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:57 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:58 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:59 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:60 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:61 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:62 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:63 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:64 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:65 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:66 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:67 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:68 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:69 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:70 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:71 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:72 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:73 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:74 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:75 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:76 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:77 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:78 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:79 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:80 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:81 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:82 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:83 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:84 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:85 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:86 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:87 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:88 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:89 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:90 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:91 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:92 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:93 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:94 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:95 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:96 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:97 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:98 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:99 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:100 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:101 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:102 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:103 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:104 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:105 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:106 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:107 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:108 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:15] [19824] [INFO]- total:110, block:109 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 10:57:21] [19824] [INFO]- all img cal LeafIndex success! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line477) -[12/18/2023 10:57:21] [19824] [INFO]- progress bar: 80% ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line478) -[12/18/2023 10:57:25] [19824] [INFO]- trans_tif2mask success, path: D:\micro\SWork\LeafAreaIndex\Temporary\processing\angle_nan_mask.tif ---from: ROIAlg.trans_tif2mask (ROIAlg.py:Line106) -[12/18/2023 10:57:26] [19824] [INFO]- trans_tif2mask success, path: D:\micro\SWork\LeafAreaIndex\Temporary\processing\tif_mask_nan.tif ---from: ROIAlg.trans_tif2mask (ROIAlg.py:Line106) -[12/18/2023 10:57:35] [19824] [INFO]- trans_tif2mask success, path: D:\micro\SWork\LeafAreaIndex\Temporary\processing\Ndvi_mask.tif ---from: ROIAlg.trans_tif2mask (ROIAlg.py:Line106) -[12/18/2023 10:57:36] [19824] [INFO]- create masks success! ---from: LeafIndexMain.cal_roi (LeafIndexMain.py:Line258) -[12/18/2023 10:57:37] [19824] [INFO]- combine_mask success, path: D:\micro\SWork\LeafAreaIndex\Temporary\processing\bare_land_mask.tif ---from: ROIAlg.combine_mask (ROIAlg.py:Line145) -[12/18/2023 10:57:38] [19824] [INFO]- combine_mask success, path: D:\micro\SWork\LeafAreaIndex\Temporary\processing\bare_land_mask.tif ---from: ROIAlg.combine_mask (ROIAlg.py:Line145) -[12/18/2023 10:57:39] [19824] [INFO]- combine_mask success, path: D:\micro\SWork\LeafAreaIndex\Temporary\processing\bare_land_mask.tif ---from: ROIAlg.combine_mask (ROIAlg.py:Line145) -[12/18/2023 10:57:39] [19824] [INFO]- combine_mask success! ---from: LeafIndexMain.cal_roi (LeafIndexMain.py:Line265) -[12/18/2023 10:57:40] [19824] [INFO]- cal_roi success, path: D:\micro\SWork\LeafAreaIndex\Temporary\maskcai_localang\LocalIncidenceAngle_preproed.tif ---from: ROIAlg.cal_roi (ROIAlg.py:Line174) -[12/18/2023 10:57:40] [19824] [INFO]- create ROI three image success! ---from: LeafIndexMain.cal_roi (LeafIndexMain.py:Line270) -[12/18/2023 10:57:41] [19824] [INFO]- cal_roi success, path: D:\micro\SWork\LeafAreaIndex\Temporary\processing\product\HJ2E_MYC_QPS_001752_E118.0_N37.7_20230204_SLC_AHV_L10000010458-cal-LAI.tif ---from: ROIAlg.cal_roi (ROIAlg.py:Line174) -[12/18/2023 10:57:41] [19824] [INFO]- block_process finished! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line493) -[12/18/2023 10:58:13] [19824] [INFO]- process_handle success! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line533) -[12/18/2023 10:58:13] [19824] [INFO]- progress bar: 100% ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line534) -[12/18/2023 10:58:13] [19824] [INFO]- successful production of LeafAreaIndex products! ---from: LeafIndexMain. (LeafIndexMain.py:Line557) -[12/18/2023 10:58:13] [19824] [INFO]- running use time: 0:04:35.307045 ---from: LeafIndexMain. (LeafIndexMain.py:Line565) diff --git a/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-10-57-18.log b/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-10-57-18.log deleted file mode 100644 index 87427d8..0000000 --- a/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-10-57-18.log +++ /dev/null @@ -1,84 +0,0 @@ -[12/18/2023 10:57:18] [18924] [INFO]- block:0 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:18] [18924] [INFO]- block:1 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:18] [18924] [INFO]- block:2 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:18] [18924] [INFO]- block:3 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:18] [18924] [INFO]- block:4 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:18] [18924] [INFO]- block:5 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:18] [18924] [INFO]- block:6 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:18] [18924] [INFO]- block:7 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:18] [18924] [INFO]- block:8 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:18] [5580] [INFO]- block:9 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:18] [18924] [INFO]- block:10 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:18] [18924] [INFO]- block:12 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:18] [5580] [INFO]- block:11 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:18] [18924] [INFO]- block:13 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:18] [5580] [INFO]- block:14 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:18] [18924] [INFO]- block:15 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:18] [5580] [INFO]- block:16 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:18] [18924] [INFO]- block:17 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:18] [5580] [INFO]- block:18 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:18] [18924] [INFO]- block:19 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:18] [5580] [INFO]- block:20 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:18] [18924] [INFO]- block:21 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:18] [18924] [INFO]- block:23 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:18] [5580] [INFO]- block:22 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:19] [18924] [INFO]- block:24 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:19] [5580] [INFO]- block:25 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:19] [18924] [INFO]- block:26 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:19] [5580] [INFO]- block:27 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:19] [18924] [INFO]- block:28 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:19] [5580] [INFO]- block:29 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:19] [18924] [INFO]- block:30 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:19] [5580] [INFO]- block:31 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:19] [18924] [INFO]- block:32 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:19] [5580] [INFO]- block:33 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:19] [18924] [INFO]- block:34 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:19] [18924] [INFO]- block:36 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:19] [5580] [INFO]- block:35 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:19] [5580] [INFO]- block:38 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:19] [18924] [INFO]- block:37 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:19] [5580] [INFO]- block:39 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:19] [18924] [INFO]- block:40 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:19] [18924] [INFO]- block:42 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:19] [5580] [INFO]- block:41 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:19] [5580] [INFO]- block:45 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:19] [18924] [INFO]- block:44 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:19] [5580] [INFO]- block:47 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:19] [18924] [INFO]- block:48 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:19] [5580] [INFO]- block:50 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:19] [18924] [INFO]- block:51 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:19] [5580] [INFO]- block:53 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:19] [5580] [INFO]- block:56 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:19] [18924] [INFO]- block:54 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:19] [5580] [INFO]- block:57 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:19] [18924] [INFO]- block:59 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:19] [5580] [INFO]- block:60 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:19] [18924] [INFO]- block:61 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:19] [5580] [INFO]- block:63 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:20] [18924] [INFO]- block:64 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:20] [5580] [INFO]- block:66 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:20] [18924] [INFO]- block:68 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:20] [5580] [INFO]- block:70 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:20] [18924] [INFO]- block:71 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:20] [5580] [INFO]- block:72 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:20] [18924] [INFO]- block:74 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:20] [5580] [INFO]- block:75 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:20] [5580] [INFO]- block:78 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:20] [18924] [INFO]- block:77 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:20] [5580] [INFO]- block:80 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:20] [18924] [INFO]- block:81 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:20] [5580] [INFO]- block:83 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:20] [18924] [INFO]- block:84 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:20] [5580] [INFO]- block:86 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:20] [18924] [INFO]- block:87 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:20] [5580] [INFO]- block:88 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:20] [18924] [INFO]- block:91 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:20] [5580] [INFO]- block:92 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:20] [18924] [INFO]- block:94 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:20] [5580] [INFO]- block:95 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:20] [18924] [INFO]- block:98 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:20] [5580] [INFO]- block:99 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:20] [18924] [INFO]- block:103 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:20] [5580] [INFO]- block:104 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:20] [18924] [INFO]- block:107 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:20] [5580] [INFO]- block:108 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) diff --git a/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-10-57-19.log b/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-10-57-19.log deleted file mode 100644 index e1aed80..0000000 --- a/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-10-57-19.log +++ /dev/null @@ -1,22 +0,0 @@ -[12/18/2023 10:57:19] [8104] [INFO]- block:43 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:19] [8104] [INFO]- block:46 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:19] [8104] [INFO]- block:49 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:19] [8104] [INFO]- block:52 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:19] [8104] [INFO]- block:55 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:19] [8104] [INFO]- block:58 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:19] [8104] [INFO]- block:62 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:20] [8104] [INFO]- block:65 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:20] [8104] [INFO]- block:67 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:20] [8104] [INFO]- block:69 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:20] [8104] [INFO]- block:73 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:20] [8104] [INFO]- block:76 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:20] [8104] [INFO]- block:79 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:20] [8104] [INFO]- block:82 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:20] [8104] [INFO]- block:85 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:20] [8104] [INFO]- block:89 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:20] [8104] [INFO]- block:90 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:20] [8104] [INFO]- block:93 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:20] [8104] [INFO]- block:97 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:20] [8104] [INFO]- block:100 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:20] [8104] [INFO]- block:102 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:20] [8104] [INFO]- block:106 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) diff --git a/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-10-57-20.log b/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-10-57-20.log deleted file mode 100644 index b93e507..0000000 --- a/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-10-57-20.log +++ /dev/null @@ -1,4 +0,0 @@ -[12/18/2023 10:57:20] [18052] [INFO]- block:96 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:20] [18052] [INFO]- block:101 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:20] [18052] [INFO]- block:105 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 10:57:20] [18052] [INFO]- block:109 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) diff --git a/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-10-57-21.log b/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-10-57-21.log deleted file mode 100644 index e69de29..0000000 diff --git a/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-11-06-43.log b/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-11-06-43.log deleted file mode 100644 index 6104309..0000000 --- a/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-11-06-43.log +++ /dev/null @@ -1,167 +0,0 @@ -[12/18/2023 11:06:43] [23304] [INFO]- sysdir: D:\estar-proj\microproduct-S-SAR\leafAreaIndex-S-SAR ---from: LeafIndexMain.check_source (LeafIndexMain.py:Line94) -[12/18/2023 11:06:43] [23304] [INFO]- init algXML succeed ---from: AlgXmlHandle.check_alg_xml (AlgXmlHandle.py:Line319) -[12/18/2023 11:06:43] [23304] [INFO]- create new workspace success! ---from: LeafIndexMain.__create_work_space (LeafIndexMain.py:Line192) -[12/18/2023 11:07:07] [23304] [INFO]- check_source success! ---from: LeafIndexMain.check_source (LeafIndexMain.py:Line124) -[12/18/2023 11:07:23] [23304] [INFO]- scope0:[[117.92941666666667, 37.77280555555556], [118.24280555555556, 37.77280555555556], [117.92941666666667, 37.446361111111116], [118.24280555555556, 37.446361111111116]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[12/18/2023 11:07:23] [23304] [INFO]- scope1:[[117.92941666666667, 37.77280555555556], [118.24280555555556, 37.77280555555556], [117.92941666666667, 37.446361111111116], [118.24280555555556, 37.446361111111116]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[12/18/2023 11:07:23] [23304] [INFO]- scope2:[[116.99999620180613, 39.00008856546379], [119.00000535036983, 39.00008856546379], [116.99999620180613, 36.99998958537168], [119.00000535036983, 36.99998958537168]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[12/18/2023 11:07:23] [23304] [INFO]- scope3:[[113.78551651051885, 40.044486377003494], [120.21426189495888, 40.044486377003494], [113.78551651051885, 34.95723240675342], [120.21426189495888, 34.95723240675342]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[12/18/2023 11:07:23] [23304] [INFO]- scope4:[[117.92941666666667, 37.77280555555556], [118.24280555555556, 37.77280555555556], [117.92941666666667, 37.446361111111116], [118.24280555555556, 37.446361111111116]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[12/18/2023 11:07:23] [23304] [INFO]- scope roi :[(117.92941666666667, 37.446361111111116), (117.92941666666667, 37.77280555555556), (118.24280555555556, 37.77280555555556), (118.24280555555556, 37.446361111111116)] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line245) -[12/18/2023 11:07:23] [23304] [INFO]- create intersect shp success! ---from: PreProcess.preprocessing (PreProcess.py:Line79) -[12/18/2023 11:07:30] [23304] [INFO]- cut HV success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[12/18/2023 11:07:38] [23304] [INFO]- cut LocalIncidenceAngle success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[12/18/2023 11:07:40] [23304] [INFO]- cut NDVI success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[12/18/2023 11:07:40] [23304] [INFO]- cut Covering success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[12/18/2023 11:07:49] [23304] [INFO]- cut soilMeasured success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[12/18/2023 11:07:49] [23304] [INFO]- cut images success! ---from: PreProcess.preprocessing (PreProcess.py:Line84) -[12/18/2023 11:07:49] [23304] [INFO]- resampling HV success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[12/18/2023 11:07:50] [23304] [INFO]- resampling LocalIncidenceAngle success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[12/18/2023 11:07:51] [23304] [INFO]- resampling NDVI success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[12/18/2023 11:07:51] [23304] [INFO]- resampling Covering success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[12/18/2023 11:07:52] [23304] [INFO]- resampling soilMeasured success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[12/18/2023 11:07:52] [23304] [INFO]- preprocess_handle success! ---from: PreProcess.preprocessing (PreProcess.py:Line90) -[12/18/2023 11:07:52] [23304] [INFO]- preprocess_handle success! ---from: LeafIndexMain.preprocess_handle (LeafIndexMain.py:Line218) -[12/18/2023 11:07:52] [23304] [INFO]- progress bar: 30% ---from: LeafIndexMain.preprocess_handle (LeafIndexMain.py:Line219) -[12/18/2023 11:07:55] [23304] [INFO]- trans_tif2mask success, path: D:\micro\SWork\LeafAreaIndex\Temporary\processing\angle_nan_mask.tif ---from: ROIAlg.trans_tif2mask (ROIAlg.py:Line106) -[12/18/2023 11:07:56] [23304] [INFO]- trans_tif2mask success, path: D:\micro\SWork\LeafAreaIndex\Temporary\processing\tif_mask_nan.tif ---from: ROIAlg.trans_tif2mask (ROIAlg.py:Line106) -[12/18/2023 11:08:05] [23304] [INFO]- trans_tif2mask success, path: D:\micro\SWork\LeafAreaIndex\Temporary\processing\Ndvi_mask.tif ---from: ROIAlg.trans_tif2mask (ROIAlg.py:Line106) -[12/18/2023 11:08:06] [23304] [INFO]- create masks success! ---from: LeafIndexMain.cal_roi (LeafIndexMain.py:Line258) -[12/18/2023 11:08:07] [23304] [INFO]- combine_mask success, path: D:\micro\SWork\LeafAreaIndex\Temporary\processing\bare_land_mask.tif ---from: ROIAlg.combine_mask (ROIAlg.py:Line145) -[12/18/2023 11:08:08] [23304] [INFO]- combine_mask success, path: D:\micro\SWork\LeafAreaIndex\Temporary\processing\bare_land_mask.tif ---from: ROIAlg.combine_mask (ROIAlg.py:Line145) -[12/18/2023 11:08:09] [23304] [INFO]- combine_mask success, path: D:\micro\SWork\LeafAreaIndex\Temporary\processing\bare_land_mask.tif ---from: ROIAlg.combine_mask (ROIAlg.py:Line145) -[12/18/2023 11:08:09] [23304] [INFO]- combine_mask success! ---from: LeafIndexMain.cal_roi (LeafIndexMain.py:Line265) -[12/18/2023 11:08:10] [23304] [INFO]- cal_roi success, path: D:\micro\SWork\LeafAreaIndex\Temporary\maskcai_localang\LocalIncidenceAngle_preproed.tif ---from: ROIAlg.cal_roi (ROIAlg.py:Line174) -[12/18/2023 11:08:10] [23304] [INFO]- create ROI three image success! ---from: LeafIndexMain.cal_roi (LeafIndexMain.py:Line270) -[12/18/2023 11:08:17] [23304] [INFO]- progress bar: 50% ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line441) -[12/18/2023 11:08:35] [23304] [INFO]- 保留得数据集如下 ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line402) -[12/18/2023 11:08:35] [23304] [INFO]- [0, 1, 118.037315, 37.628621, 0.647, 0.00031600939904479484, 0.0035441595052058497, 0.011499127764024852, 0.07841542092968284] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 11:08:35] [23304] [INFO]- [0, 2, 118.037415, 37.628721, 1.85, 0.0006487838043422757, 0.0037419428016967427, 0.011395231671171424, 0.09455256313545468] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 11:08:35] [23304] [INFO]- [0, 3, 118.037515, 37.628821, 2.548, 0.0011948131671611912, 0.0037569264639858847, 0.01133885210448945, 0.08196406780431668] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 11:08:35] [23304] [INFO]- [0, 4, 118.037615, 37.628921, 4.399, 0.000707945784384138, 0.003653807647491771, 0.011634949928172577, 0.07409728646140408] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 11:08:35] [23304] [INFO]- [0, 5, 118.037715, 37.629021, 3.118, 0.0037282068494295653, 0.003769166641121293, 0.01186657450909232, 0.12197119549468712] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 11:08:35] [23304] [INFO]- [0, 6, 118.037815, 37.629121, 3.045, 0.0033970348320337945, 0.00393355179026171, 0.011545482459535569, 0.21129441012938818] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 11:08:35] [23304] [INFO]- [0, 7, 118.037915, 37.629221, 0.703, 0.0002786121168629772, 0.004000000189989805, 0.010852086990151876, 0.3833015576510886] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 11:08:35] [23304] [INFO]- [0, 8, 118.038015, 37.629321, 1.879, 0.000647142615748583, 0.004000000189989805, 0.01061685162561911, 0.5832591384281347] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 11:08:35] [23304] [INFO]- [0, 9, 118.038115, 37.629421, 3.634, 0.001071519305237607, 0.004000000189989805, 0.01081088441711517, 0.8028442104473527] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 11:08:35] [23304] [INFO]- [0, 10, 118.038215, 37.629521, 3.698, 0.001281814558871049, 0.004000000189989805, 0.010996482277541984, 0.6656071119654325] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 11:08:35] [23304] [INFO]- [0, 11, 118.038315, 37.629621, 2.499, 0.0013689891307007353, 0.003106724709433354, 0.013181755790647901, 0.8254400415369022] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 11:08:35] [23304] [INFO]- [0, 12, 118.038415, 37.629721, 6.474, 0.011617160780585677, 0.0017733913127700855, 0.013708339532676302, 0.7161886968914374] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 11:08:35] [23304] [INFO]- [0, 13, 118.038515, 37.629821, 2.227, 0.007277798045368242, 0.0004444444655544228, 0.014681509339515075, 0.5202048383193252] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 11:08:35] [23304] [INFO]- [0, 26, 118.039815, 37.631121, 1.966, 0.0008375292821268827, 0.0004332647716373573, 0.015016999394621379, 0.5263507707435408] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 11:08:35] [23304] [INFO]- [0, 27, 118.039915, 37.631221, 2.994, 0.0017060823890031242, 0.0015071874763241705, 0.014463746161372573, 1.0328524809928588] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 11:08:35] [23304] [INFO]- [0, 29, 118.040015, 37.631321, 2.125, 0.0007935969681957695, 0.002840520872987439, 0.014409249878407996, 1.1679075368116667] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 11:08:35] [23304] [INFO]- 训练模型 ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line413) -[12/18/2023 11:10:23] [23304] [INFO]- mask data image success! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line450) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:0 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:1 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:2 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:3 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:4 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:5 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:6 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:7 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:8 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:9 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:10 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:11 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:12 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:13 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:14 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:15 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:16 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:17 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:18 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:19 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:20 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:21 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:22 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:23 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:24 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:25 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:26 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:27 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:28 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:29 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:30 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:31 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:32 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:33 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:34 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:35 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:36 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:37 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:38 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:39 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:40 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:41 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:42 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:43 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:44 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:45 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:46 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:47 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:48 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:49 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:50 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:51 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:52 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:53 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:54 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:55 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:56 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:57 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:58 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:59 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:60 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:61 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:62 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:63 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:64 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:65 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:66 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:67 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:68 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:69 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:70 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:71 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:72 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:73 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:74 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:75 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:76 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:77 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:78 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:79 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:80 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:81 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:82 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:83 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:84 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:85 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:86 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:87 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:88 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:89 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:90 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:91 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:92 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:93 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:94 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:95 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:96 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:97 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:98 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:99 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:100 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:101 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:102 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:103 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:104 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:105 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:106 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:107 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:108 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:27] [23304] [INFO]- total:110, block:109 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:10:32] [23304] [INFO]- all img cal LeafIndex success! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line477) -[12/18/2023 11:10:32] [23304] [INFO]- progress bar: 80% ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line478) diff --git a/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-11-10-29.log b/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-11-10-29.log deleted file mode 100644 index a70c9a2..0000000 --- a/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-11-10-29.log +++ /dev/null @@ -1,81 +0,0 @@ -[12/18/2023 11:10:29] [21744] [INFO]- block:0 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:29] [21744] [INFO]- block:1 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:29] [21744] [INFO]- block:2 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:29] [21744] [INFO]- block:3 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:29] [21744] [INFO]- block:4 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:29] [21744] [INFO]- block:5 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:29] [21744] [INFO]- block:6 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:29] [21744] [INFO]- block:7 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:29] [21744] [INFO]- block:8 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:29] [21744] [INFO]- block:10 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:29] [23120] [INFO]- block:9 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:29] [23120] [INFO]- block:12 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:29] [21744] [INFO]- block:11 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:30] [23120] [INFO]- block:13 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:30] [21744] [INFO]- block:14 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:30] [23120] [INFO]- block:15 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:30] [21744] [INFO]- block:16 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:30] [23120] [INFO]- block:17 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:30] [21744] [INFO]- block:18 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:30] [23120] [INFO]- block:19 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:30] [21744] [INFO]- block:20 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:30] [23120] [INFO]- block:21 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:30] [23120] [INFO]- block:23 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:30] [21744] [INFO]- block:22 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:30] [23120] [INFO]- block:24 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:30] [21744] [INFO]- block:25 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:30] [23120] [INFO]- block:26 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:30] [21744] [INFO]- block:27 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:30] [23120] [INFO]- block:28 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:30] [21744] [INFO]- block:29 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:30] [23120] [INFO]- block:30 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:30] [21744] [INFO]- block:31 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:30] [23120] [INFO]- block:32 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:30] [21744] [INFO]- block:33 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:30] [23120] [INFO]- block:34 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:30] [21744] [INFO]- block:35 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:30] [23120] [INFO]- block:36 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:30] [21744] [INFO]- block:37 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:30] [23120] [INFO]- block:38 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:30] [21744] [INFO]- block:40 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:30] [23120] [INFO]- block:41 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:30] [23120] [INFO]- block:43 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:30] [21744] [INFO]- block:42 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:30] [23120] [INFO]- block:45 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:31] [21744] [INFO]- block:46 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:31] [23120] [INFO]- block:47 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:31] [21744] [INFO]- block:49 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:31] [23120] [INFO]- block:50 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:31] [23120] [INFO]- block:53 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:31] [21744] [INFO]- block:52 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:31] [21744] [INFO]- block:56 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:31] [23120] [INFO]- block:57 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:31] [21744] [INFO]- block:58 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:31] [23120] [INFO]- block:60 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:31] [21744] [INFO]- block:61 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:31] [23120] [INFO]- block:63 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:31] [21744] [INFO]- block:64 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:31] [21744] [INFO]- block:67 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:31] [23120] [INFO]- block:66 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:31] [21744] [INFO]- block:68 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:31] [23120] [INFO]- block:70 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:31] [21744] [INFO]- block:71 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:31] [23120] [INFO]- block:73 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:31] [21744] [INFO]- block:74 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:31] [23120] [INFO]- block:76 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:31] [21744] [INFO]- block:77 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:31] [23120] [INFO]- block:80 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:31] [21744] [INFO]- block:81 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:31] [23120] [INFO]- block:83 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:31] [21744] [INFO]- block:85 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:31] [23120] [INFO]- block:87 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:31] [21744] [INFO]- block:90 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:31] [23120] [INFO]- block:92 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:32] [21744] [INFO]- block:94 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:32] [23120] [INFO]- block:97 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:32] [21744] [INFO]- block:98 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:32] [23120] [INFO]- block:99 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:32] [21744] [INFO]- block:103 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:32] [23120] [INFO]- block:104 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:32] [21744] [INFO]- block:107 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:32] [23120] [INFO]- block:108 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) diff --git a/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-11-10-30.log b/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-11-10-30.log deleted file mode 100644 index bd47535..0000000 --- a/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-11-10-30.log +++ /dev/null @@ -1,21 +0,0 @@ -[12/18/2023 11:10:30] [18656] [INFO]- block:39 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:30] [18656] [INFO]- block:44 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:31] [18656] [INFO]- block:48 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:31] [18656] [INFO]- block:51 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:31] [18656] [INFO]- block:54 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:31] [18656] [INFO]- block:55 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:31] [18656] [INFO]- block:59 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:31] [18656] [INFO]- block:62 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:31] [18656] [INFO]- block:65 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:31] [18656] [INFO]- block:69 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:31] [18656] [INFO]- block:72 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:31] [18656] [INFO]- block:75 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:31] [18656] [INFO]- block:78 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:31] [18656] [INFO]- block:79 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:31] [18656] [INFO]- block:84 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:31] [18656] [INFO]- block:88 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:31] [18656] [INFO]- block:93 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:32] [18656] [INFO]- block:95 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:32] [18656] [INFO]- block:100 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:32] [18656] [INFO]- block:102 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:32] [18656] [INFO]- block:106 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) diff --git a/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-11-10-31.log b/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-11-10-31.log deleted file mode 100644 index 9136931..0000000 --- a/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-11-10-31.log +++ /dev/null @@ -1,8 +0,0 @@ -[12/18/2023 11:10:31] [10692] [INFO]- block:82 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:31] [10692] [INFO]- block:86 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:31] [10692] [INFO]- block:89 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:31] [10692] [INFO]- block:91 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:32] [10692] [INFO]- block:96 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:32] [10692] [INFO]- block:101 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:32] [10692] [INFO]- block:105 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:10:32] [10692] [INFO]- block:109 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) diff --git a/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-11-10-32.log b/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-11-10-32.log deleted file mode 100644 index e69de29..0000000 diff --git a/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-11-11-27.log b/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-11-11-27.log deleted file mode 100644 index 810ab2b..0000000 --- a/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-11-11-27.log +++ /dev/null @@ -1,183 +0,0 @@ -[12/18/2023 11:11:27] [22436] [INFO]- sysdir: D:\estar-proj\microproduct-S-SAR\leafAreaIndex-S-SAR ---from: LeafIndexMain.check_source (LeafIndexMain.py:Line94) -[12/18/2023 11:11:27] [22436] [INFO]- init algXML succeed ---from: AlgXmlHandle.check_alg_xml (AlgXmlHandle.py:Line319) -[12/18/2023 11:11:27] [22436] [INFO]- create new workspace success! ---from: LeafIndexMain.__create_work_space (LeafIndexMain.py:Line192) -[12/18/2023 11:11:51] [22436] [INFO]- check_source success! ---from: LeafIndexMain.check_source (LeafIndexMain.py:Line124) -[12/18/2023 11:12:07] [22436] [INFO]- scope0:[[117.92941666666667, 37.77280555555556], [118.24280555555556, 37.77280555555556], [117.92941666666667, 37.446361111111116], [118.24280555555556, 37.446361111111116]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[12/18/2023 11:12:07] [22436] [INFO]- scope1:[[117.92941666666667, 37.77280555555556], [118.24280555555556, 37.77280555555556], [117.92941666666667, 37.446361111111116], [118.24280555555556, 37.446361111111116]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[12/18/2023 11:12:07] [22436] [INFO]- scope2:[[116.99999620180613, 39.00008856546379], [119.00000535036983, 39.00008856546379], [116.99999620180613, 36.99998958537168], [119.00000535036983, 36.99998958537168]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[12/18/2023 11:12:07] [22436] [INFO]- scope3:[[113.78551651051885, 40.044486377003494], [120.21426189495888, 40.044486377003494], [113.78551651051885, 34.95723240675342], [120.21426189495888, 34.95723240675342]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[12/18/2023 11:12:07] [22436] [INFO]- scope4:[[117.92941666666667, 37.77280555555556], [118.24280555555556, 37.77280555555556], [117.92941666666667, 37.446361111111116], [118.24280555555556, 37.446361111111116]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[12/18/2023 11:12:07] [22436] [INFO]- scope roi :[(117.92941666666667, 37.446361111111116), (117.92941666666667, 37.77280555555556), (118.24280555555556, 37.77280555555556), (118.24280555555556, 37.446361111111116)] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line245) -[12/18/2023 11:12:07] [22436] [INFO]- create intersect shp success! ---from: PreProcess.preprocessing (PreProcess.py:Line79) -[12/18/2023 11:12:14] [22436] [INFO]- cut HV success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[12/18/2023 11:12:21] [22436] [INFO]- cut LocalIncidenceAngle success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[12/18/2023 11:12:23] [22436] [INFO]- cut NDVI success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[12/18/2023 11:12:23] [22436] [INFO]- cut Covering success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[12/18/2023 11:12:31] [22436] [INFO]- cut soilMeasured success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[12/18/2023 11:12:31] [22436] [INFO]- cut images success! ---from: PreProcess.preprocessing (PreProcess.py:Line84) -[12/18/2023 11:12:32] [22436] [INFO]- resampling HV success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[12/18/2023 11:12:32] [22436] [INFO]- resampling LocalIncidenceAngle success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[12/18/2023 11:12:33] [22436] [INFO]- resampling NDVI success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[12/18/2023 11:12:34] [22436] [INFO]- resampling Covering success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[12/18/2023 11:12:34] [22436] [INFO]- resampling soilMeasured success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[12/18/2023 11:12:34] [22436] [INFO]- preprocess_handle success! ---from: PreProcess.preprocessing (PreProcess.py:Line90) -[12/18/2023 11:12:34] [22436] [INFO]- preprocess_handle success! ---from: LeafIndexMain.preprocess_handle (LeafIndexMain.py:Line218) -[12/18/2023 11:12:34] [22436] [INFO]- progress bar: 30% ---from: LeafIndexMain.preprocess_handle (LeafIndexMain.py:Line219) -[12/18/2023 11:12:37] [22436] [INFO]- trans_tif2mask success, path: D:\micro\SWork\LeafAreaIndex\Temporary\processing\angle_nan_mask.tif ---from: ROIAlg.trans_tif2mask (ROIAlg.py:Line106) -[12/18/2023 11:12:38] [22436] [INFO]- trans_tif2mask success, path: D:\micro\SWork\LeafAreaIndex\Temporary\processing\tif_mask_nan.tif ---from: ROIAlg.trans_tif2mask (ROIAlg.py:Line106) -[12/18/2023 11:12:47] [22436] [INFO]- trans_tif2mask success, path: D:\micro\SWork\LeafAreaIndex\Temporary\processing\Ndvi_mask.tif ---from: ROIAlg.trans_tif2mask (ROIAlg.py:Line106) -[12/18/2023 11:12:47] [22436] [INFO]- create masks success! ---from: LeafIndexMain.cal_roi (LeafIndexMain.py:Line258) -[12/18/2023 11:12:48] [22436] [INFO]- combine_mask success, path: D:\micro\SWork\LeafAreaIndex\Temporary\processing\bare_land_mask.tif ---from: ROIAlg.combine_mask (ROIAlg.py:Line145) -[12/18/2023 11:12:50] [22436] [INFO]- combine_mask success, path: D:\micro\SWork\LeafAreaIndex\Temporary\processing\bare_land_mask.tif ---from: ROIAlg.combine_mask (ROIAlg.py:Line145) -[12/18/2023 11:12:51] [22436] [INFO]- combine_mask success, path: D:\micro\SWork\LeafAreaIndex\Temporary\processing\bare_land_mask.tif ---from: ROIAlg.combine_mask (ROIAlg.py:Line145) -[12/18/2023 11:12:51] [22436] [INFO]- combine_mask success! ---from: LeafIndexMain.cal_roi (LeafIndexMain.py:Line265) -[12/18/2023 11:12:52] [22436] [INFO]- cal_roi success, path: D:\micro\SWork\LeafAreaIndex\Temporary\maskcai_localang\LocalIncidenceAngle_preproed.tif ---from: ROIAlg.cal_roi (ROIAlg.py:Line174) -[12/18/2023 11:12:52] [22436] [INFO]- create ROI three image success! ---from: LeafIndexMain.cal_roi (LeafIndexMain.py:Line270) -[12/18/2023 11:12:59] [22436] [INFO]- progress bar: 50% ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line441) -[12/18/2023 11:13:17] [22436] [INFO]- 保留得数据集如下 ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line402) -[12/18/2023 11:13:17] [22436] [INFO]- [0, 1, 118.037315, 37.628621, 0.647, 0.00031600939904479484, 0.0035441595052058497, 0.011499127764024852, 0.07841542092968284] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 11:13:17] [22436] [INFO]- [0, 2, 118.037415, 37.628721, 1.85, 0.0006487838043422757, 0.0037419428016967427, 0.011395231671171424, 0.09455256313545468] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 11:13:17] [22436] [INFO]- [0, 3, 118.037515, 37.628821, 2.548, 0.0011948131671611912, 0.0037569264639858847, 0.01133885210448945, 0.08196406780431668] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 11:13:17] [22436] [INFO]- [0, 4, 118.037615, 37.628921, 4.399, 0.000707945784384138, 0.003653807647491771, 0.011634949928172577, 0.07409728646140408] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 11:13:17] [22436] [INFO]- [0, 5, 118.037715, 37.629021, 3.118, 0.0037282068494295653, 0.003769166641121293, 0.01186657450909232, 0.12197119549468712] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 11:13:17] [22436] [INFO]- [0, 6, 118.037815, 37.629121, 3.045, 0.0033970348320337945, 0.00393355179026171, 0.011545482459535569, 0.21129441012938818] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 11:13:17] [22436] [INFO]- [0, 7, 118.037915, 37.629221, 0.703, 0.0002786121168629772, 0.004000000189989805, 0.010852086990151876, 0.3833015576510886] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 11:13:17] [22436] [INFO]- [0, 8, 118.038015, 37.629321, 1.879, 0.000647142615748583, 0.004000000189989805, 0.01061685162561911, 0.5832591384281347] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 11:13:17] [22436] [INFO]- [0, 9, 118.038115, 37.629421, 3.634, 0.001071519305237607, 0.004000000189989805, 0.01081088441711517, 0.8028442104473527] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 11:13:17] [22436] [INFO]- [0, 10, 118.038215, 37.629521, 3.698, 0.001281814558871049, 0.004000000189989805, 0.010996482277541984, 0.6656071119654325] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 11:13:17] [22436] [INFO]- [0, 11, 118.038315, 37.629621, 2.499, 0.0013689891307007353, 0.003106724709433354, 0.013181755790647901, 0.8254400415369022] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 11:13:17] [22436] [INFO]- [0, 12, 118.038415, 37.629721, 6.474, 0.011617160780585677, 0.0017733913127700855, 0.013708339532676302, 0.7161886968914374] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 11:13:17] [22436] [INFO]- [0, 13, 118.038515, 37.629821, 2.227, 0.007277798045368242, 0.0004444444655544228, 0.014681509339515075, 0.5202048383193252] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 11:13:17] [22436] [INFO]- [0, 26, 118.039815, 37.631121, 1.966, 0.0008375292821268827, 0.0004332647716373573, 0.015016999394621379, 0.5263507707435408] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 11:13:17] [22436] [INFO]- [0, 27, 118.039915, 37.631221, 2.994, 0.0017060823890031242, 0.0015071874763241705, 0.014463746161372573, 1.0328524809928588] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 11:13:17] [22436] [INFO]- [0, 29, 118.040015, 37.631321, 2.125, 0.0007935969681957695, 0.002840520872987439, 0.014409249878407996, 1.1679075368116667] ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line406) -[12/18/2023 11:13:17] [22436] [INFO]- 训练模型 ---from: LeafIndexMain.cal_empirical_parameters (LeafIndexMain.py:Line413) -[12/18/2023 11:15:00] [22436] [INFO]- mask data image success! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line450) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:0 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:1 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:2 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:3 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:4 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:5 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:6 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:7 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:8 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:9 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:10 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:11 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:12 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:13 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:14 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:15 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:16 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:17 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:18 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:19 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:20 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:21 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:22 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:23 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:24 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:25 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:26 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:27 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:28 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:29 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:30 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:31 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:32 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:33 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:34 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:35 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:36 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:37 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:38 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:39 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:40 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:41 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:42 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:43 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:44 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:45 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:46 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:47 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:48 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:49 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:50 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:51 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:52 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:53 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:54 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:55 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:56 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:57 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:58 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:59 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:60 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:61 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:62 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:63 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:64 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:65 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:66 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:67 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:68 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:69 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:70 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:71 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:72 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:73 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:74 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:75 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:76 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:77 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:78 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:79 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:80 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:81 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:82 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:83 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:84 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:85 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:86 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:87 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:88 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:89 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:90 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:91 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:92 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:93 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:94 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:95 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:96 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:97 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:98 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:99 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:100 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:101 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:102 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:103 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:104 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:105 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:106 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:107 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:108 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:03] [22436] [INFO]- total:110, block:109 calculating leaf_index! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line472) -[12/18/2023 11:15:09] [22436] [INFO]- all img cal LeafIndex success! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line477) -[12/18/2023 11:15:09] [22436] [INFO]- progress bar: 80% ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line478) -[12/18/2023 11:15:12] [22436] [INFO]- trans_tif2mask success, path: D:\micro\SWork\LeafAreaIndex\Temporary\processing\angle_nan_mask.tif ---from: ROIAlg.trans_tif2mask (ROIAlg.py:Line106) -[12/18/2023 11:15:14] [22436] [INFO]- trans_tif2mask success, path: D:\micro\SWork\LeafAreaIndex\Temporary\processing\tif_mask_nan.tif ---from: ROIAlg.trans_tif2mask (ROIAlg.py:Line106) -[12/18/2023 11:15:23] [22436] [INFO]- trans_tif2mask success, path: D:\micro\SWork\LeafAreaIndex\Temporary\processing\Ndvi_mask.tif ---from: ROIAlg.trans_tif2mask (ROIAlg.py:Line106) -[12/18/2023 11:15:23] [22436] [INFO]- create masks success! ---from: LeafIndexMain.cal_roi (LeafIndexMain.py:Line258) -[12/18/2023 11:15:24] [22436] [INFO]- combine_mask success, path: D:\micro\SWork\LeafAreaIndex\Temporary\processing\bare_land_mask.tif ---from: ROIAlg.combine_mask (ROIAlg.py:Line145) -[12/18/2023 11:15:25] [22436] [INFO]- combine_mask success, path: D:\micro\SWork\LeafAreaIndex\Temporary\processing\bare_land_mask.tif ---from: ROIAlg.combine_mask (ROIAlg.py:Line145) -[12/18/2023 11:15:26] [22436] [INFO]- combine_mask success, path: D:\micro\SWork\LeafAreaIndex\Temporary\processing\bare_land_mask.tif ---from: ROIAlg.combine_mask (ROIAlg.py:Line145) -[12/18/2023 11:15:26] [22436] [INFO]- combine_mask success! ---from: LeafIndexMain.cal_roi (LeafIndexMain.py:Line265) -[12/18/2023 11:15:27] [22436] [INFO]- cal_roi success, path: D:\micro\SWork\LeafAreaIndex\Temporary\maskcai_localang\LocalIncidenceAngle_preproed.tif ---from: ROIAlg.cal_roi (ROIAlg.py:Line174) -[12/18/2023 11:15:27] [22436] [INFO]- create ROI three image success! ---from: LeafIndexMain.cal_roi (LeafIndexMain.py:Line270) -[12/18/2023 11:15:28] [22436] [INFO]- cal_roi success, path: D:\micro\SWork\LeafAreaIndex\Temporary\processing\product\HJ2E_MYC_QPS_001752_E118.0_N37.7_20230204_SLC_AHV_L10000010458-cal-LAI.tif ---from: ROIAlg.cal_roi (ROIAlg.py:Line174) -[12/18/2023 11:15:29] [22436] [INFO]- block_process finished! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line493) -[12/18/2023 11:16:00] [22436] [INFO]- process_handle success! ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line533) -[12/18/2023 11:16:00] [22436] [INFO]- progress bar: 100% ---from: LeafIndexMain.block_process (LeafIndexMain.py:Line534) -[12/18/2023 11:16:00] [22436] [INFO]- successful production of LeafAreaIndex products! ---from: LeafIndexMain. (LeafIndexMain.py:Line557) -[12/18/2023 11:16:00] [22436] [INFO]- running use time: 0:04:32.721935 ---from: LeafIndexMain. (LeafIndexMain.py:Line565) diff --git a/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-11-15-05.log b/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-11-15-05.log deleted file mode 100644 index ea88713..0000000 --- a/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-11-15-05.log +++ /dev/null @@ -1,45 +0,0 @@ -[12/18/2023 11:15:05] [25612] [INFO]- block:0 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:05] [25612] [INFO]- block:1 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:05] [25612] [INFO]- block:2 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:06] [25612] [INFO]- block:3 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:06] [25612] [INFO]- block:4 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:06] [25612] [INFO]- block:5 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:06] [25612] [INFO]- block:6 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:06] [25612] [INFO]- block:8 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:06] [25612] [INFO]- block:10 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:06] [25612] [INFO]- block:11 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:06] [25612] [INFO]- block:14 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:06] [25612] [INFO]- block:16 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:06] [25612] [INFO]- block:18 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:06] [25612] [INFO]- block:20 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:06] [25612] [INFO]- block:22 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:06] [25612] [INFO]- block:25 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:06] [25612] [INFO]- block:27 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:06] [25612] [INFO]- block:29 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:06] [25612] [INFO]- block:31 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:06] [25612] [INFO]- block:33 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:07] [25612] [INFO]- block:35 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:07] [25612] [INFO]- block:37 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:07] [25612] [INFO]- block:39 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:07] [25612] [INFO]- block:42 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:07] [25612] [INFO]- block:45 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:07] [25612] [INFO]- block:47 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:07] [25612] [INFO]- block:50 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:07] [25612] [INFO]- block:53 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:07] [25612] [INFO]- block:56 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:07] [25612] [INFO]- block:58 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:07] [25612] [INFO]- block:61 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:07] [25612] [INFO]- block:64 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:07] [25612] [INFO]- block:67 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:07] [25612] [INFO]- block:68 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:07] [25612] [INFO]- block:71 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:07] [25612] [INFO]- block:74 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:07] [25612] [INFO]- block:77 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:08] [25612] [INFO]- block:80 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:08] [25612] [INFO]- block:85 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:08] [25612] [INFO]- block:89 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:08] [25612] [INFO]- block:90 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:08] [25612] [INFO]- block:94 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:08] [25612] [INFO]- block:98 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:08] [25612] [INFO]- block:103 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:08] [25612] [INFO]- block:107 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) diff --git a/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-11-15-06.log b/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-11-15-06.log deleted file mode 100644 index ef5c011..0000000 --- a/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-11-15-06.log +++ /dev/null @@ -1,37 +0,0 @@ -[12/18/2023 11:15:06] [25724] [INFO]- block:7 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:06] [25724] [INFO]- block:9 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:06] [25724] [INFO]- block:12 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:06] [25724] [INFO]- block:13 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:06] [25724] [INFO]- block:15 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:06] [25724] [INFO]- block:17 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:06] [25724] [INFO]- block:19 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:06] [25724] [INFO]- block:21 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:06] [25724] [INFO]- block:23 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:06] [25724] [INFO]- block:24 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:06] [25724] [INFO]- block:26 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:06] [25724] [INFO]- block:28 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:06] [25724] [INFO]- block:30 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:06] [25724] [INFO]- block:32 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:06] [25724] [INFO]- block:34 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:07] [25724] [INFO]- block:36 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:07] [25724] [INFO]- block:38 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:07] [25724] [INFO]- block:40 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:07] [25724] [INFO]- block:43 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:07] [25724] [INFO]- block:46 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:07] [25724] [INFO]- block:49 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:07] [25724] [INFO]- block:52 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:07] [25724] [INFO]- block:55 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:07] [25724] [INFO]- block:59 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:07] [25724] [INFO]- block:62 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:07] [25724] [INFO]- block:65 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:07] [25724] [INFO]- block:69 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:07] [25724] [INFO]- block:73 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:07] [25724] [INFO]- block:76 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:08] [25724] [INFO]- block:79 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:08] [25724] [INFO]- block:83 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:08] [25724] [INFO]- block:86 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:08] [25724] [INFO]- block:92 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:08] [25724] [INFO]- block:96 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:08] [25724] [INFO]- block:99 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:08] [25724] [INFO]- block:104 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:08] [25724] [INFO]- block:108 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) diff --git a/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-11-15-07.log b/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-11-15-07.log deleted file mode 100644 index f51351e..0000000 --- a/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-11-15-07.log +++ /dev/null @@ -1,21 +0,0 @@ -[12/18/2023 11:15:07] [24504] [INFO]- block:41 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:07] [24504] [INFO]- block:44 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:07] [24504] [INFO]- block:48 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:07] [24504] [INFO]- block:51 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:07] [24504] [INFO]- block:54 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:07] [24504] [INFO]- block:57 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:07] [24504] [INFO]- block:60 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:07] [24504] [INFO]- block:63 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:07] [24504] [INFO]- block:66 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:07] [24504] [INFO]- block:70 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:07] [24504] [INFO]- block:72 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:07] [24504] [INFO]- block:75 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:07] [24504] [INFO]- block:78 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:08] [24504] [INFO]- block:81 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:08] [24504] [INFO]- block:84 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:08] [24504] [INFO]- block:88 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:08] [24504] [INFO]- block:93 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:08] [24504] [INFO]- block:97 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:08] [24504] [INFO]- block:100 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:08] [24504] [INFO]- block:102 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:08] [24504] [INFO]- block:106 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) diff --git a/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-11-15-08.log b/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-11-15-08.log deleted file mode 100644 index aabd928..0000000 --- a/leafAreaIndex-S-SAR/run_log/LeafAreaIndex2023-12-18-11-15-08.log +++ /dev/null @@ -1,7 +0,0 @@ -[12/18/2023 11:15:08] [23444] [INFO]- block:82 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:08] [23444] [INFO]- block:87 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:08] [23444] [INFO]- block:91 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:08] [23444] [INFO]- block:95 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:08] [23444] [INFO]- block:101 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:08] [23444] [INFO]- block:105 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) -[12/18/2023 11:15:08] [23444] [INFO]- block:109 cal LeafIndex success! ---from: LeafIndexMain.cal_leaf_index (LeafIndexMain.py:Line307) diff --git a/soilMoisture-S-SAR/SoilMoisture.xml b/soilMoisture-S-SAR/SoilMoisture.xml index 26a6a8d..1bfca2c 100644 --- a/soilMoisture-S-SAR/SoilMoisture.xml +++ b/soilMoisture-S-SAR/SoilMoisture.xml @@ -1,7 +1,7 @@ CSAR_202107275419_0001-0 - D:\micro\LWork\ + D:\613NET\ComputingNode\ftproot\Production\PL_20240507155658_0002\ File ElementAlg @@ -274,7 +274,7 @@ File tar.gz Man - D:\micro\LWork\SoilMoisture\Output\HJ2E_MYC_QPS_001752_E118.0_N37.7_20230204_SLC_AHV_L10000010458-cal-SMC.tar.gz + D:\613NET\ComputingNode\ftproot\Production\PL_20240507155658_0002\SoilMoisture\Output\HJ2E_MYC_QPS_001752_E118.0_N37.7_20230204_SLC_AHV_L10000010458-cal-SMC.tar.gz DEFAULT DEFAULT DEFAULT diff --git a/soilMoisture-S-SAR/SoilMoistureMain.py b/soilMoisture-S-SAR/SoilMoistureMain.py index dc6f5c3..7b6f2b5 100644 --- a/soilMoisture-S-SAR/SoilMoistureMain.py +++ b/soilMoisture-S-SAR/SoilMoistureMain.py @@ -112,7 +112,8 @@ class MoistureMain: def get_tar_gz_inf(self, tar_gz_path): para_dic = {} name = os.path.split(tar_gz_path)[1].rstrip('.tar.gz') - file_dir = os.path.join(self.__workspace_preprocessing_path, name + '\\') + name_d = name.split('_')[6] + file_dir = os.path.join(self.__workspace_preprocessing_path, name_d + '\\') file.de_targz(tar_gz_path, file_dir) # 元文件字典 para_dic.update(InitPara.get_meta_dic_new(InitPara.get_meta_paths(file_dir, name), name)) diff --git a/soilMoisture-S-SAR/run_log/SoilMoisture2024-04-07-18-05-37.log b/soilMoisture-S-SAR/run_log/SoilMoisture2024-04-07-18-05-37.log deleted file mode 100644 index 92a9eda..0000000 --- a/soilMoisture-S-SAR/run_log/SoilMoisture2024-04-07-18-05-37.log +++ /dev/null @@ -1,38 +0,0 @@ -[04/07/2024 18:05:37] [26396] [INFO]- sysdir: D:\estar-proj\microproduct-S-SAR\soilMoisture-S-SAR ---from: SoilMoistureMain.check_source (SoilMoistureMain.py:Line87) -[04/07/2024 18:05:37] [26396] [INFO]- init algXML succeed ---from: AlgXmlHandle.check_alg_xml (AlgXmlHandle.py:Line321) -[04/07/2024 18:05:37] [26396] [WARNING]- mem_free 20.0GB less than32GB ---from: AlgXmlHandle.check_run_env (AlgXmlHandle.py:Line351) -[04/07/2024 18:05:39] [26396] [INFO]- create new workspace success! ---from: SoilMoistureMain.__create_work_space (SoilMoistureMain.py:Line163) -[04/07/2024 18:06:43] [26396] [INFO]- check_source success! ---from: SoilMoistureMain.check_source (SoilMoistureMain.py:Line108) -[04/07/2024 18:06:43] [26396] [INFO]- progress bar: 10% ---from: SoilMoistureMain.check_source (SoilMoistureMain.py:Line109) -[04/07/2024 18:06:58] [26396] [INFO]- scope0:[[117.92941666666667, 37.77280555555556], [118.24280555555556, 37.77280555555556], [117.92941666666667, 37.446361111111116], [118.24280555555556, 37.446361111111116]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[04/07/2024 18:06:58] [26396] [INFO]- scope1:[[117.92941666666667, 37.77280555555556], [118.24280555555556, 37.77280555555556], [117.92941666666667, 37.446361111111116], [118.24280555555556, 37.446361111111116]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[04/07/2024 18:06:58] [26396] [INFO]- scope2:[[117.92941666666667, 37.77280555555556], [118.24280555555556, 37.77280555555556], [117.92941666666667, 37.446361111111116], [118.24280555555556, 37.446361111111116]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[04/07/2024 18:06:58] [26396] [INFO]- scope3:[[117.92941666666667, 37.77280555555556], [118.24280555555556, 37.77280555555556], [117.92941666666667, 37.446361111111116], [118.24280555555556, 37.446361111111116]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[04/07/2024 18:06:58] [26396] [INFO]- scope4:[[113.78551651051885, 40.044486377003494], [120.21426189495888, 40.044486377003494], [113.78551651051885, 34.95723240675342], [120.21426189495888, 34.95723240675342]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[04/07/2024 18:06:58] [26396] [INFO]- scope5:[[116.99999620180613, 39.00008856546379], [119.00000535036983, 39.00008856546379], [116.99999620180613, 36.99998958537168], [119.00000535036983, 36.99998958537168]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[04/07/2024 18:06:58] [26396] [INFO]- scope6:[[116.99999620180613, 39.00008856546379], [119.00000535036983, 39.00008856546379], [116.99999620180613, 36.99998958537168], [119.00000535036983, 36.99998958537168]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[04/07/2024 18:06:58] [26396] [INFO]- scope7:[[117.92941666666667, 37.77280555555556], [118.24280555555556, 37.77280555555556], [117.92941666666667, 37.446361111111116], [118.24280555555556, 37.446361111111116]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[04/07/2024 18:06:58] [26396] [INFO]- scope roi :[(117.92941666666667, 37.446361111111116), (117.92941666666667, 37.77280555555556), (118.24280555555556, 37.77280555555556), (118.24280555555556, 37.446361111111116)] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line245) -[04/07/2024 18:06:58] [26396] [INFO]- create intersect shp success! ---from: PreProcess.preprocessing (PreProcess.py:Line79) -[04/07/2024 18:07:06] [26396] [INFO]- cut HH success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[04/07/2024 18:07:14] [26396] [INFO]- cut VV success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[04/07/2024 18:07:21] [26396] [INFO]- cut VH success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[04/07/2024 18:07:28] [26396] [INFO]- cut HV success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[04/07/2024 18:07:29] [26396] [INFO]- cut Covering success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[04/07/2024 18:07:29] [26396] [INFO]- cut NDVI success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[04/07/2024 18:07:30] [26396] [INFO]- cut NDWI success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[04/07/2024 18:07:38] [26396] [INFO]- cut LocalIncidenceAngle success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[04/07/2024 18:07:38] [26396] [INFO]- cut images success! ---from: PreProcess.preprocessing (PreProcess.py:Line84) -[04/07/2024 18:07:38] [26396] [INFO]- resampling HH success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[04/07/2024 18:07:38] [26396] [INFO]- resampling VV success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[04/07/2024 18:07:39] [26396] [INFO]- resampling VH success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[04/07/2024 18:07:39] [26396] [INFO]- resampling HV success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[04/07/2024 18:07:39] [26396] [INFO]- resampling Covering success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[04/07/2024 18:07:40] [26396] [INFO]- resampling NDVI success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[04/07/2024 18:07:41] [26396] [INFO]- resampling NDWI success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[04/07/2024 18:07:42] [26396] [INFO]- resampling LocalIncidenceAngle success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[04/07/2024 18:07:42] [26396] [INFO]- preprocess_handle success! ---from: PreProcess.preprocessing (PreProcess.py:Line90) -[04/07/2024 18:07:42] [26396] [INFO]- progress bar: 40% ---from: SoilMoistureMain.preprocess_handle (SoilMoistureMain.py:Line178) -[04/07/2024 18:07:45] [26396] [INFO]- trans_tif2mask success, path: D:\micro\LWork\SoilMoisture\Temporary\processing\angle_nan_mask.tif ---from: ROIAlg.trans_tif2mask (ROIAlg.py:Line106) -[04/07/2024 18:07:45] [26396] [INFO]- trans_tif2mask success, path: D:\micro\LWork\SoilMoisture\Temporary\processing\tif_mask.tif ---from: ROIAlg.trans_tif2mask (ROIAlg.py:Line106) -[04/07/2024 18:07:47] [26396] [INFO]- trans_tif2mask success, path: D:\micro\LWork\SoilMoisture\Temporary\processing\tif_mask_zero.tif ---from: ROIAlg.trans_tif2mask (ROIAlg.py:Line106) diff --git a/soilMoisture-S-SAR/run_log/SoilMoisture2024-04-07-18-08-13.log b/soilMoisture-S-SAR/run_log/SoilMoisture2024-04-07-18-08-13.log deleted file mode 100644 index 71e6971..0000000 --- a/soilMoisture-S-SAR/run_log/SoilMoisture2024-04-07-18-08-13.log +++ /dev/null @@ -1,60 +0,0 @@ -[04/07/2024 18:08:13] [6332] [INFO]- sysdir: D:\estar-proj\microproduct-S-SAR\soilMoisture-S-SAR ---from: SoilMoistureMain.check_source (SoilMoistureMain.py:Line87) -[04/07/2024 18:08:13] [6332] [INFO]- init algXML succeed ---from: AlgXmlHandle.check_alg_xml (AlgXmlHandle.py:Line321) -[04/07/2024 18:08:13] [6332] [WARNING]- mem_free 19.0GB less than32GB ---from: AlgXmlHandle.check_run_env (AlgXmlHandle.py:Line351) -[04/07/2024 18:08:14] [6332] [INFO]- create new workspace success! ---from: SoilMoistureMain.__create_work_space (SoilMoistureMain.py:Line163) -[04/07/2024 18:09:00] [6332] [INFO]- check_source success! ---from: SoilMoistureMain.check_source (SoilMoistureMain.py:Line108) -[04/07/2024 18:09:00] [6332] [INFO]- progress bar: 10% ---from: SoilMoistureMain.check_source (SoilMoistureMain.py:Line109) -[04/07/2024 18:09:15] [6332] [INFO]- scope0:[[117.92941666666667, 37.77280555555556], [118.24280555555556, 37.77280555555556], [117.92941666666667, 37.446361111111116], [118.24280555555556, 37.446361111111116]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[04/07/2024 18:09:15] [6332] [INFO]- scope1:[[117.92941666666667, 37.77280555555556], [118.24280555555556, 37.77280555555556], [117.92941666666667, 37.446361111111116], [118.24280555555556, 37.446361111111116]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[04/07/2024 18:09:15] [6332] [INFO]- scope2:[[117.92941666666667, 37.77280555555556], [118.24280555555556, 37.77280555555556], [117.92941666666667, 37.446361111111116], [118.24280555555556, 37.446361111111116]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[04/07/2024 18:09:15] [6332] [INFO]- scope3:[[117.92941666666667, 37.77280555555556], [118.24280555555556, 37.77280555555556], [117.92941666666667, 37.446361111111116], [118.24280555555556, 37.446361111111116]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[04/07/2024 18:09:15] [6332] [INFO]- scope4:[[113.78551651051885, 40.044486377003494], [120.21426189495888, 40.044486377003494], [113.78551651051885, 34.95723240675342], [120.21426189495888, 34.95723240675342]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[04/07/2024 18:09:15] [6332] [INFO]- scope5:[[116.99999620180613, 39.00008856546379], [119.00000535036983, 39.00008856546379], [116.99999620180613, 36.99998958537168], [119.00000535036983, 36.99998958537168]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[04/07/2024 18:09:15] [6332] [INFO]- scope6:[[116.99999620180613, 39.00008856546379], [119.00000535036983, 39.00008856546379], [116.99999620180613, 36.99998958537168], [119.00000535036983, 36.99998958537168]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[04/07/2024 18:09:15] [6332] [INFO]- scope7:[[117.92941666666667, 37.77280555555556], [118.24280555555556, 37.77280555555556], [117.92941666666667, 37.446361111111116], [118.24280555555556, 37.446361111111116]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[04/07/2024 18:09:15] [6332] [INFO]- scope roi :[(117.92941666666667, 37.446361111111116), (117.92941666666667, 37.77280555555556), (118.24280555555556, 37.77280555555556), (118.24280555555556, 37.446361111111116)] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line245) -[04/07/2024 18:09:15] [6332] [INFO]- create intersect shp success! ---from: PreProcess.preprocessing (PreProcess.py:Line79) -[04/07/2024 18:09:22] [6332] [INFO]- cut HH success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[04/07/2024 18:09:29] [6332] [INFO]- cut VV success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[04/07/2024 18:09:37] [6332] [INFO]- cut VH success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[04/07/2024 18:09:44] [6332] [INFO]- cut HV success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[04/07/2024 18:09:44] [6332] [INFO]- cut Covering success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[04/07/2024 18:09:45] [6332] [INFO]- cut NDVI success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[04/07/2024 18:09:46] [6332] [INFO]- cut NDWI success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[04/07/2024 18:09:53] [6332] [INFO]- cut LocalIncidenceAngle success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[04/07/2024 18:09:53] [6332] [INFO]- cut images success! ---from: PreProcess.preprocessing (PreProcess.py:Line84) -[04/07/2024 18:09:53] [6332] [INFO]- resampling HH success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[04/07/2024 18:09:54] [6332] [INFO]- resampling VV success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[04/07/2024 18:09:54] [6332] [INFO]- resampling VH success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[04/07/2024 18:09:54] [6332] [INFO]- resampling HV success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[04/07/2024 18:09:54] [6332] [INFO]- resampling Covering success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[04/07/2024 18:09:56] [6332] [INFO]- resampling NDVI success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[04/07/2024 18:09:57] [6332] [INFO]- resampling NDWI success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[04/07/2024 18:09:57] [6332] [INFO]- resampling LocalIncidenceAngle success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[04/07/2024 18:09:57] [6332] [INFO]- preprocess_handle success! ---from: PreProcess.preprocessing (PreProcess.py:Line90) -[04/07/2024 18:09:57] [6332] [INFO]- progress bar: 40% ---from: SoilMoistureMain.preprocess_handle (SoilMoistureMain.py:Line178) -[04/07/2024 18:10:00] [6332] [INFO]- trans_tif2mask success, path: D:\micro\LWork\SoilMoisture\Temporary\processing\angle_nan_mask.tif ---from: ROIAlg.trans_tif2mask (ROIAlg.py:Line106) -[04/07/2024 18:10:01] [6332] [INFO]- trans_tif2mask success, path: D:\micro\LWork\SoilMoisture\Temporary\processing\tif_mask.tif ---from: ROIAlg.trans_tif2mask (ROIAlg.py:Line106) -[04/07/2024 18:10:02] [6332] [INFO]- trans_tif2mask success, path: D:\micro\LWork\SoilMoisture\Temporary\processing\tif_mask_zero.tif ---from: ROIAlg.trans_tif2mask (ROIAlg.py:Line106) -[04/07/2024 18:10:11] [6332] [INFO]- trans_tif2mask success, path: D:\micro\LWork\SoilMoisture\Temporary\processing\ndvi_mask.tif ---from: ROIAlg.trans_tif2mask (ROIAlg.py:Line106) -[04/07/2024 18:10:11] [6332] [INFO]- create masks success! ---from: SoilMoistureMain.create_roi (SoilMoistureMain.py:Line224) -[04/07/2024 18:10:12] [6332] [INFO]- combine_mask success, path: D:\micro\LWork\SoilMoisture\Temporary\processing\bare_land_mask.tif ---from: ROIAlg.combine_mask (ROIAlg.py:Line145) -[04/07/2024 18:10:13] [6332] [INFO]- combine_mask success, path: D:\micro\LWork\SoilMoisture\Temporary\processing\bare_land_mask.tif ---from: ROIAlg.combine_mask (ROIAlg.py:Line145) -[04/07/2024 18:10:14] [6332] [INFO]- combine_mask success, path: D:\micro\LWork\SoilMoisture\Temporary\processing\bare_land_mask.tif ---from: ROIAlg.combine_mask (ROIAlg.py:Line145) -[04/07/2024 18:10:16] [6332] [INFO]- combine_mask success, path: D:\micro\LWork\SoilMoisture\Temporary\processing\bare_land_mask.tif ---from: ROIAlg.combine_mask (ROIAlg.py:Line145) -[04/07/2024 18:10:16] [6332] [INFO]- combine_mask success! ---from: SoilMoistureMain.create_roi (SoilMoistureMain.py:Line231) -[04/07/2024 18:10:17] [6332] [INFO]- cal_roi success, path: D:\micro\LWork\SoilMoisture\Temporary\preprocessed\LocalIncidenceAngle_preprocessed.tif ---from: ROIAlg.cal_roi (ROIAlg.py:Line174) -[04/07/2024 18:10:17] [6332] [INFO]- create ROI image success! ---from: SoilMoistureMain.create_roi (SoilMoistureMain.py:Line237) -[04/07/2024 18:10:17] [6332] [INFO]- progress bar: 50% ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line251) -[04/07/2024 18:10:17] [6332] [INFO]- lee process finish: D:\micro\LWork\SoilMoisture\Temporary\preprocessed\HH_preprocessed.tif ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line259) -[04/07/2024 18:10:17] [6332] [INFO]- lee process finish: D:\micro\LWork\SoilMoisture\Temporary\preprocessed\VV_preprocessed.tif ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line259) -[04/07/2024 18:10:17] [6332] [INFO]- lee process finish: D:\micro\LWork\SoilMoisture\Temporary\preprocessed\VH_preprocessed.tif ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line259) -[04/07/2024 18:10:17] [6332] [INFO]- lee process finish: D:\micro\LWork\SoilMoisture\Temporary\preprocessed\HV_preprocessed.tif ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line259) -[04/07/2024 18:12:04] [6332] [INFO]- blocking tifs success! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line277) -[04/07/2024 18:12:04] [6332] [INFO]- angle_list is None or hh_list is None or vv_list is None or vh_list is None or hv_list is None or ndwi_list is None ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line302) -[04/07/2024 18:12:04] [6332] [ERROR]- run-time error! ---from: SoilMoistureMain. (SoilMoistureMain.py:Line473) -Traceback (most recent call last): - File "D:/estar-proj/microproduct-S-SAR/soilMoisture-S-SAR/SoilMoistureMain.py", line 470, in - raise Exception('process_handle() failed!') -Exception: process_handle() failed! -[04/07/2024 18:12:06] [6332] [INFO]- running use time: 0:03:53.253113 ---from: SoilMoistureMain. (SoilMoistureMain.py:Line479) diff --git a/soilMoisture-S-SAR/run_log/SoilMoisture2024-04-07-18-14-01.log b/soilMoisture-S-SAR/run_log/SoilMoisture2024-04-07-18-14-01.log deleted file mode 100644 index e15e8d1..0000000 --- a/soilMoisture-S-SAR/run_log/SoilMoisture2024-04-07-18-14-01.log +++ /dev/null @@ -1,60 +0,0 @@ -[04/07/2024 18:14:01] [22856] [INFO]- sysdir: D:\estar-proj\microproduct-S-SAR\soilMoisture-S-SAR ---from: SoilMoistureMain.check_source (SoilMoistureMain.py:Line87) -[04/07/2024 18:14:01] [22856] [INFO]- init algXML succeed ---from: AlgXmlHandle.check_alg_xml (AlgXmlHandle.py:Line321) -[04/07/2024 18:14:01] [22856] [WARNING]- mem_free 20.0GB less than32GB ---from: AlgXmlHandle.check_run_env (AlgXmlHandle.py:Line351) -[04/07/2024 18:14:01] [22856] [INFO]- create new workspace success! ---from: SoilMoistureMain.__create_work_space (SoilMoistureMain.py:Line163) -[04/07/2024 18:15:00] [22856] [INFO]- check_source success! ---from: SoilMoistureMain.check_source (SoilMoistureMain.py:Line108) -[04/07/2024 18:15:00] [22856] [INFO]- progress bar: 10% ---from: SoilMoistureMain.check_source (SoilMoistureMain.py:Line109) -[04/07/2024 18:15:15] [22856] [INFO]- scope0:[[117.92941666666667, 37.77280555555556], [118.24280555555556, 37.77280555555556], [117.92941666666667, 37.446361111111116], [118.24280555555556, 37.446361111111116]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[04/07/2024 18:15:15] [22856] [INFO]- scope1:[[117.92941666666667, 37.77280555555556], [118.24280555555556, 37.77280555555556], [117.92941666666667, 37.446361111111116], [118.24280555555556, 37.446361111111116]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[04/07/2024 18:15:15] [22856] [INFO]- scope2:[[117.92941666666667, 37.77280555555556], [118.24280555555556, 37.77280555555556], [117.92941666666667, 37.446361111111116], [118.24280555555556, 37.446361111111116]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[04/07/2024 18:15:15] [22856] [INFO]- scope3:[[117.92941666666667, 37.77280555555556], [118.24280555555556, 37.77280555555556], [117.92941666666667, 37.446361111111116], [118.24280555555556, 37.446361111111116]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[04/07/2024 18:15:15] [22856] [INFO]- scope4:[[113.78551651051885, 40.044486377003494], [120.21426189495888, 40.044486377003494], [113.78551651051885, 34.95723240675342], [120.21426189495888, 34.95723240675342]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[04/07/2024 18:15:15] [22856] [INFO]- scope5:[[116.99999620180613, 39.00008856546379], [119.00000535036983, 39.00008856546379], [116.99999620180613, 36.99998958537168], [119.00000535036983, 36.99998958537168]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[04/07/2024 18:15:15] [22856] [INFO]- scope6:[[116.99999620180613, 39.00008856546379], [119.00000535036983, 39.00008856546379], [116.99999620180613, 36.99998958537168], [119.00000535036983, 36.99998958537168]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[04/07/2024 18:15:15] [22856] [INFO]- scope7:[[117.92941666666667, 37.77280555555556], [118.24280555555556, 37.77280555555556], [117.92941666666667, 37.446361111111116], [118.24280555555556, 37.446361111111116]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[04/07/2024 18:15:15] [22856] [INFO]- scope roi :[(117.92941666666667, 37.446361111111116), (117.92941666666667, 37.77280555555556), (118.24280555555556, 37.77280555555556), (118.24280555555556, 37.446361111111116)] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line245) -[04/07/2024 18:15:15] [22856] [INFO]- create intersect shp success! ---from: PreProcess.preprocessing (PreProcess.py:Line79) -[04/07/2024 18:15:23] [22856] [INFO]- cut HH success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[04/07/2024 18:15:30] [22856] [INFO]- cut VV success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[04/07/2024 18:15:37] [22856] [INFO]- cut VH success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[04/07/2024 18:15:45] [22856] [INFO]- cut HV success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[04/07/2024 18:15:45] [22856] [INFO]- cut Covering success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[04/07/2024 18:15:46] [22856] [INFO]- cut NDVI success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[04/07/2024 18:15:46] [22856] [INFO]- cut NDWI success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[04/07/2024 18:15:54] [22856] [INFO]- cut LocalIncidenceAngle success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[04/07/2024 18:15:54] [22856] [INFO]- cut images success! ---from: PreProcess.preprocessing (PreProcess.py:Line84) -[04/07/2024 18:15:54] [22856] [INFO]- resampling HH success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[04/07/2024 18:15:54] [22856] [INFO]- resampling VV success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[04/07/2024 18:15:54] [22856] [INFO]- resampling VH success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[04/07/2024 18:15:54] [22856] [INFO]- resampling HV success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[04/07/2024 18:15:55] [22856] [INFO]- resampling Covering success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[04/07/2024 18:15:56] [22856] [INFO]- resampling NDVI success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[04/07/2024 18:15:57] [22856] [INFO]- resampling NDWI success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[04/07/2024 18:15:57] [22856] [INFO]- resampling LocalIncidenceAngle success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[04/07/2024 18:15:57] [22856] [INFO]- preprocess_handle success! ---from: PreProcess.preprocessing (PreProcess.py:Line90) -[04/07/2024 18:15:57] [22856] [INFO]- progress bar: 40% ---from: SoilMoistureMain.preprocess_handle (SoilMoistureMain.py:Line178) -[04/07/2024 18:16:00] [22856] [INFO]- trans_tif2mask success, path: D:\micro\LWork\SoilMoisture\Temporary\processing\angle_nan_mask.tif ---from: ROIAlg.trans_tif2mask (ROIAlg.py:Line106) -[04/07/2024 18:16:01] [22856] [INFO]- trans_tif2mask success, path: D:\micro\LWork\SoilMoisture\Temporary\processing\tif_mask.tif ---from: ROIAlg.trans_tif2mask (ROIAlg.py:Line106) -[04/07/2024 18:16:02] [22856] [INFO]- trans_tif2mask success, path: D:\micro\LWork\SoilMoisture\Temporary\processing\tif_mask_zero.tif ---from: ROIAlg.trans_tif2mask (ROIAlg.py:Line106) -[04/07/2024 18:16:12] [22856] [INFO]- trans_tif2mask success, path: D:\micro\LWork\SoilMoisture\Temporary\processing\ndvi_mask.tif ---from: ROIAlg.trans_tif2mask (ROIAlg.py:Line106) -[04/07/2024 18:16:12] [22856] [INFO]- create masks success! ---from: SoilMoistureMain.create_roi (SoilMoistureMain.py:Line224) -[04/07/2024 18:16:13] [22856] [INFO]- combine_mask success, path: D:\micro\LWork\SoilMoisture\Temporary\processing\bare_land_mask.tif ---from: ROIAlg.combine_mask (ROIAlg.py:Line145) -[04/07/2024 18:16:14] [22856] [INFO]- combine_mask success, path: D:\micro\LWork\SoilMoisture\Temporary\processing\bare_land_mask.tif ---from: ROIAlg.combine_mask (ROIAlg.py:Line145) -[04/07/2024 18:16:15] [22856] [INFO]- combine_mask success, path: D:\micro\LWork\SoilMoisture\Temporary\processing\bare_land_mask.tif ---from: ROIAlg.combine_mask (ROIAlg.py:Line145) -[04/07/2024 18:16:16] [22856] [INFO]- combine_mask success, path: D:\micro\LWork\SoilMoisture\Temporary\processing\bare_land_mask.tif ---from: ROIAlg.combine_mask (ROIAlg.py:Line145) -[04/07/2024 18:16:16] [22856] [INFO]- combine_mask success! ---from: SoilMoistureMain.create_roi (SoilMoistureMain.py:Line231) -[04/07/2024 18:16:17] [22856] [INFO]- cal_roi success, path: D:\micro\LWork\SoilMoisture\Temporary\preprocessed\LocalIncidenceAngle_preprocessed.tif ---from: ROIAlg.cal_roi (ROIAlg.py:Line174) -[04/07/2024 18:16:17] [22856] [INFO]- create ROI image success! ---from: SoilMoistureMain.create_roi (SoilMoistureMain.py:Line237) -[04/07/2024 18:16:17] [22856] [INFO]- progress bar: 50% ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line251) -[04/07/2024 18:16:17] [22856] [INFO]- lee process finish: D:\micro\LWork\SoilMoisture\Temporary\preprocessed\HH_preprocessed.tif ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line259) -[04/07/2024 18:16:17] [22856] [INFO]- lee process finish: D:\micro\LWork\SoilMoisture\Temporary\preprocessed\VV_preprocessed.tif ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line259) -[04/07/2024 18:16:18] [22856] [INFO]- lee process finish: D:\micro\LWork\SoilMoisture\Temporary\preprocessed\VH_preprocessed.tif ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line259) -[04/07/2024 18:16:18] [22856] [INFO]- lee process finish: D:\micro\LWork\SoilMoisture\Temporary\preprocessed\HV_preprocessed.tif ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line259) -[04/07/2024 18:18:00] [22856] [INFO]- blocking tifs success! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line277) -[04/07/2024 18:18:00] [22856] [INFO]- angle_list is None or hh_list is None or vv_list is None or vh_list is None or hv_list is None or ndwi_list is None ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line297) -[04/07/2024 18:18:00] [22856] [ERROR]- run-time error! ---from: SoilMoistureMain. (SoilMoistureMain.py:Line467) -Traceback (most recent call last): - File "D:/estar-proj/microproduct-S-SAR/soilMoisture-S-SAR/SoilMoistureMain.py", line 464, in - raise Exception('process_handle() failed!') -Exception: process_handle() failed! -[04/07/2024 18:18:02] [22856] [INFO]- running use time: 0:04:00.828204 ---from: SoilMoistureMain. (SoilMoistureMain.py:Line473) diff --git a/soilMoisture-S-SAR/run_log/SoilMoisture2024-04-07-18-20-03.log b/soilMoisture-S-SAR/run_log/SoilMoisture2024-04-07-18-20-03.log deleted file mode 100644 index 4255514..0000000 --- a/soilMoisture-S-SAR/run_log/SoilMoisture2024-04-07-18-20-03.log +++ /dev/null @@ -1,53 +0,0 @@ -[04/07/2024 18:20:03] [26092] [INFO]- sysdir: D:\estar-proj\microproduct-S-SAR\soilMoisture-S-SAR ---from: SoilMoistureMain.check_source (SoilMoistureMain.py:Line87) -[04/07/2024 18:20:03] [26092] [INFO]- init algXML succeed ---from: AlgXmlHandle.check_alg_xml (AlgXmlHandle.py:Line321) -[04/07/2024 18:20:03] [26092] [WARNING]- mem_free 20.0GB less than32GB ---from: AlgXmlHandle.check_run_env (AlgXmlHandle.py:Line351) -[04/07/2024 18:20:03] [26092] [INFO]- create new workspace success! ---from: SoilMoistureMain.__create_work_space (SoilMoistureMain.py:Line163) -[04/07/2024 18:21:02] [26092] [INFO]- check_source success! ---from: SoilMoistureMain.check_source (SoilMoistureMain.py:Line108) -[04/07/2024 18:21:02] [26092] [INFO]- progress bar: 10% ---from: SoilMoistureMain.check_source (SoilMoistureMain.py:Line109) -[04/07/2024 18:21:17] [26092] [INFO]- scope0:[[117.92941666666667, 37.77280555555556], [118.24280555555556, 37.77280555555556], [117.92941666666667, 37.446361111111116], [118.24280555555556, 37.446361111111116]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[04/07/2024 18:21:17] [26092] [INFO]- scope1:[[117.92941666666667, 37.77280555555556], [118.24280555555556, 37.77280555555556], [117.92941666666667, 37.446361111111116], [118.24280555555556, 37.446361111111116]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[04/07/2024 18:21:17] [26092] [INFO]- scope2:[[117.92941666666667, 37.77280555555556], [118.24280555555556, 37.77280555555556], [117.92941666666667, 37.446361111111116], [118.24280555555556, 37.446361111111116]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[04/07/2024 18:21:17] [26092] [INFO]- scope3:[[117.92941666666667, 37.77280555555556], [118.24280555555556, 37.77280555555556], [117.92941666666667, 37.446361111111116], [118.24280555555556, 37.446361111111116]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[04/07/2024 18:21:17] [26092] [INFO]- scope4:[[113.78551651051885, 40.044486377003494], [120.21426189495888, 40.044486377003494], [113.78551651051885, 34.95723240675342], [120.21426189495888, 34.95723240675342]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[04/07/2024 18:21:17] [26092] [INFO]- scope5:[[116.99999620180613, 39.00008856546379], [119.00000535036983, 39.00008856546379], [116.99999620180613, 36.99998958537168], [119.00000535036983, 36.99998958537168]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[04/07/2024 18:21:17] [26092] [INFO]- scope6:[[116.99999620180613, 39.00008856546379], [119.00000535036983, 39.00008856546379], [116.99999620180613, 36.99998958537168], [119.00000535036983, 36.99998958537168]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[04/07/2024 18:21:17] [26092] [INFO]- scope7:[[117.92941666666667, 37.77280555555556], [118.24280555555556, 37.77280555555556], [117.92941666666667, 37.446361111111116], [118.24280555555556, 37.446361111111116]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[04/07/2024 18:21:17] [26092] [INFO]- scope roi :[(117.92941666666667, 37.446361111111116), (117.92941666666667, 37.77280555555556), (118.24280555555556, 37.77280555555556), (118.24280555555556, 37.446361111111116)] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line245) -[04/07/2024 18:21:17] [26092] [INFO]- create intersect shp success! ---from: PreProcess.preprocessing (PreProcess.py:Line79) -[04/07/2024 18:21:24] [26092] [INFO]- cut HH success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[04/07/2024 18:21:32] [26092] [INFO]- cut VV success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[04/07/2024 18:21:39] [26092] [INFO]- cut VH success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[04/07/2024 18:21:46] [26092] [INFO]- cut HV success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[04/07/2024 18:21:46] [26092] [INFO]- cut Covering success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[04/07/2024 18:21:47] [26092] [INFO]- cut NDVI success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[04/07/2024 18:21:48] [26092] [INFO]- cut NDWI success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[04/07/2024 18:21:55] [26092] [INFO]- cut LocalIncidenceAngle success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[04/07/2024 18:21:55] [26092] [INFO]- cut images success! ---from: PreProcess.preprocessing (PreProcess.py:Line84) -[04/07/2024 18:21:56] [26092] [INFO]- resampling HH success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[04/07/2024 18:21:56] [26092] [INFO]- resampling VV success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[04/07/2024 18:21:56] [26092] [INFO]- resampling VH success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[04/07/2024 18:21:56] [26092] [INFO]- resampling HV success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[04/07/2024 18:21:57] [26092] [INFO]- resampling Covering success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[04/07/2024 18:21:58] [26092] [INFO]- resampling NDVI success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[04/07/2024 18:21:59] [26092] [INFO]- resampling NDWI success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[04/07/2024 18:21:59] [26092] [INFO]- resampling LocalIncidenceAngle success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[04/07/2024 18:21:59] [26092] [INFO]- preprocess_handle success! ---from: PreProcess.preprocessing (PreProcess.py:Line90) -[04/07/2024 18:21:59] [26092] [INFO]- progress bar: 40% ---from: SoilMoistureMain.preprocess_handle (SoilMoistureMain.py:Line178) -[04/07/2024 18:22:02] [26092] [INFO]- trans_tif2mask success, path: D:\micro\LWork\SoilMoisture\Temporary\processing\angle_nan_mask.tif ---from: ROIAlg.trans_tif2mask (ROIAlg.py:Line106) -[04/07/2024 18:22:03] [26092] [INFO]- trans_tif2mask success, path: D:\micro\LWork\SoilMoisture\Temporary\processing\tif_mask.tif ---from: ROIAlg.trans_tif2mask (ROIAlg.py:Line106) -[04/07/2024 18:22:04] [26092] [INFO]- trans_tif2mask success, path: D:\micro\LWork\SoilMoisture\Temporary\processing\tif_mask_zero.tif ---from: ROIAlg.trans_tif2mask (ROIAlg.py:Line106) -[04/07/2024 18:22:13] [26092] [INFO]- trans_tif2mask success, path: D:\micro\LWork\SoilMoisture\Temporary\processing\ndvi_mask.tif ---from: ROIAlg.trans_tif2mask (ROIAlg.py:Line106) -[04/07/2024 18:22:13] [26092] [INFO]- create masks success! ---from: SoilMoistureMain.create_roi (SoilMoistureMain.py:Line224) -[04/07/2024 18:22:14] [26092] [INFO]- combine_mask success, path: D:\micro\LWork\SoilMoisture\Temporary\processing\bare_land_mask.tif ---from: ROIAlg.combine_mask (ROIAlg.py:Line145) -[04/07/2024 18:22:15] [26092] [INFO]- combine_mask success, path: D:\micro\LWork\SoilMoisture\Temporary\processing\bare_land_mask.tif ---from: ROIAlg.combine_mask (ROIAlg.py:Line145) -[04/07/2024 18:22:17] [26092] [INFO]- combine_mask success, path: D:\micro\LWork\SoilMoisture\Temporary\processing\bare_land_mask.tif ---from: ROIAlg.combine_mask (ROIAlg.py:Line145) -[04/07/2024 18:22:18] [26092] [INFO]- combine_mask success, path: D:\micro\LWork\SoilMoisture\Temporary\processing\bare_land_mask.tif ---from: ROIAlg.combine_mask (ROIAlg.py:Line145) -[04/07/2024 18:22:18] [26092] [INFO]- combine_mask success! ---from: SoilMoistureMain.create_roi (SoilMoistureMain.py:Line231) -[04/07/2024 18:22:19] [26092] [INFO]- cal_roi success, path: D:\micro\LWork\SoilMoisture\Temporary\preprocessed\LocalIncidenceAngle_preprocessed.tif ---from: ROIAlg.cal_roi (ROIAlg.py:Line174) -[04/07/2024 18:22:19] [26092] [INFO]- create ROI image success! ---from: SoilMoistureMain.create_roi (SoilMoistureMain.py:Line237) -[04/07/2024 18:22:19] [26092] [INFO]- progress bar: 50% ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line251) -[04/07/2024 18:22:19] [26092] [INFO]- lee process finish: D:\micro\LWork\SoilMoisture\Temporary\preprocessed\HH_preprocessed.tif ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line259) -[04/07/2024 18:22:19] [26092] [INFO]- lee process finish: D:\micro\LWork\SoilMoisture\Temporary\preprocessed\VV_preprocessed.tif ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line259) -[04/07/2024 18:22:19] [26092] [INFO]- lee process finish: D:\micro\LWork\SoilMoisture\Temporary\preprocessed\VH_preprocessed.tif ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line259) -[04/07/2024 18:22:19] [26092] [INFO]- lee process finish: D:\micro\LWork\SoilMoisture\Temporary\preprocessed\HV_preprocessed.tif ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line259) -[04/07/2024 18:24:03] [26092] [INFO]- blocking tifs success! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line277) diff --git a/soilMoisture-S-SAR/run_log/SoilMoisture2024-04-08-09-18-35.log b/soilMoisture-S-SAR/run_log/SoilMoisture2024-04-08-09-18-35.log deleted file mode 100644 index 3dd4408..0000000 --- a/soilMoisture-S-SAR/run_log/SoilMoisture2024-04-08-09-18-35.log +++ /dev/null @@ -1,171 +0,0 @@ -[04/08/2024 09:18:35] [24760] [INFO]- sysdir: D:\estar-proj\microproduct-S-SAR\soilMoisture-S-SAR ---from: SoilMoistureMain.check_source (SoilMoistureMain.py:Line87) -[04/08/2024 09:18:35] [24760] [INFO]- init algXML succeed ---from: AlgXmlHandle.check_alg_xml (AlgXmlHandle.py:Line321) -[04/08/2024 09:18:35] [24760] [WARNING]- mem_free 19.0GB less than32GB ---from: AlgXmlHandle.check_run_env (AlgXmlHandle.py:Line351) -[04/08/2024 09:18:37] [24760] [INFO]- create new workspace success! ---from: SoilMoistureMain.__create_work_space (SoilMoistureMain.py:Line163) -[04/08/2024 09:19:40] [24760] [INFO]- check_source success! ---from: SoilMoistureMain.check_source (SoilMoistureMain.py:Line108) -[04/08/2024 09:19:40] [24760] [INFO]- progress bar: 10% ---from: SoilMoistureMain.check_source (SoilMoistureMain.py:Line109) -[04/08/2024 09:19:56] [24760] [INFO]- scope0:[[117.92941666666667, 37.77280555555556], [118.24280555555556, 37.77280555555556], [117.92941666666667, 37.446361111111116], [118.24280555555556, 37.446361111111116]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[04/08/2024 09:19:56] [24760] [INFO]- scope1:[[117.92941666666667, 37.77280555555556], [118.24280555555556, 37.77280555555556], [117.92941666666667, 37.446361111111116], [118.24280555555556, 37.446361111111116]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[04/08/2024 09:19:56] [24760] [INFO]- scope2:[[117.92941666666667, 37.77280555555556], [118.24280555555556, 37.77280555555556], [117.92941666666667, 37.446361111111116], [118.24280555555556, 37.446361111111116]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[04/08/2024 09:19:56] [24760] [INFO]- scope3:[[117.92941666666667, 37.77280555555556], [118.24280555555556, 37.77280555555556], [117.92941666666667, 37.446361111111116], [118.24280555555556, 37.446361111111116]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[04/08/2024 09:19:56] [24760] [INFO]- scope4:[[113.78551651051885, 40.044486377003494], [120.21426189495888, 40.044486377003494], [113.78551651051885, 34.95723240675342], [120.21426189495888, 34.95723240675342]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[04/08/2024 09:19:56] [24760] [INFO]- scope5:[[116.99999620180613, 39.00008856546379], [119.00000535036983, 39.00008856546379], [116.99999620180613, 36.99998958537168], [119.00000535036983, 36.99998958537168]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[04/08/2024 09:19:56] [24760] [INFO]- scope6:[[116.99999620180613, 39.00008856546379], [119.00000535036983, 39.00008856546379], [116.99999620180613, 36.99998958537168], [119.00000535036983, 36.99998958537168]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[04/08/2024 09:19:56] [24760] [INFO]- scope7:[[117.92941666666667, 37.77280555555556], [118.24280555555556, 37.77280555555556], [117.92941666666667, 37.446361111111116], [118.24280555555556, 37.446361111111116]] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line239) -[04/08/2024 09:19:56] [24760] [INFO]- scope roi :[(117.92941666666667, 37.446361111111116), (117.92941666666667, 37.77280555555556), (118.24280555555556, 37.77280555555556), (118.24280555555556, 37.446361111111116)] ---from: PreProcess.cal_intersect_shp (PreProcess.py:Line245) -[04/08/2024 09:19:56] [24760] [INFO]- create intersect shp success! ---from: PreProcess.preprocessing (PreProcess.py:Line79) -[04/08/2024 09:20:03] [24760] [INFO]- cut HH success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[04/08/2024 09:20:11] [24760] [INFO]- cut VV success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[04/08/2024 09:20:18] [24760] [INFO]- cut VH success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[04/08/2024 09:20:25] [24760] [INFO]- cut HV success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[04/08/2024 09:20:25] [24760] [INFO]- cut Covering success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[04/08/2024 09:20:26] [24760] [INFO]- cut NDVI success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[04/08/2024 09:20:27] [24760] [INFO]- cut NDWI success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[04/08/2024 09:20:35] [24760] [INFO]- cut LocalIncidenceAngle success! ---from: PreProcess.cut_imgs (PreProcess.py:Line372) -[04/08/2024 09:20:35] [24760] [INFO]- cut images success! ---from: PreProcess.preprocessing (PreProcess.py:Line84) -[04/08/2024 09:20:35] [24760] [INFO]- resampling HH success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[04/08/2024 09:20:35] [24760] [INFO]- resampling VV success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[04/08/2024 09:20:35] [24760] [INFO]- resampling VH success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[04/08/2024 09:20:35] [24760] [INFO]- resampling HV success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[04/08/2024 09:20:36] [24760] [INFO]- resampling Covering success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[04/08/2024 09:20:37] [24760] [INFO]- resampling NDVI success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[04/08/2024 09:20:38] [24760] [INFO]- resampling NDWI success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[04/08/2024 09:20:38] [24760] [INFO]- resampling LocalIncidenceAngle success! ---from: PreProcess.resampling_img (PreProcess.py:Line415) -[04/08/2024 09:20:38] [24760] [INFO]- preprocess_handle success! ---from: PreProcess.preprocessing (PreProcess.py:Line90) -[04/08/2024 09:20:38] [24760] [INFO]- progress bar: 40% ---from: SoilMoistureMain.preprocess_handle (SoilMoistureMain.py:Line178) -[04/08/2024 09:20:41] [24760] [INFO]- trans_tif2mask success, path: D:\micro\LWork\SoilMoisture\Temporary\processing\angle_nan_mask.tif ---from: ROIAlg.trans_tif2mask (ROIAlg.py:Line106) -[04/08/2024 09:20:42] [24760] [INFO]- trans_tif2mask success, path: D:\micro\LWork\SoilMoisture\Temporary\processing\tif_mask.tif ---from: ROIAlg.trans_tif2mask (ROIAlg.py:Line106) -[04/08/2024 09:20:44] [24760] [INFO]- trans_tif2mask success, path: D:\micro\LWork\SoilMoisture\Temporary\processing\tif_mask_zero.tif ---from: ROIAlg.trans_tif2mask (ROIAlg.py:Line106) -[04/08/2024 09:20:54] [24760] [INFO]- trans_tif2mask success, path: D:\micro\LWork\SoilMoisture\Temporary\processing\ndvi_mask.tif ---from: ROIAlg.trans_tif2mask (ROIAlg.py:Line106) -[04/08/2024 09:20:54] [24760] [INFO]- create masks success! ---from: SoilMoistureMain.create_roi (SoilMoistureMain.py:Line224) -[04/08/2024 09:20:55] [24760] [INFO]- combine_mask success, path: D:\micro\LWork\SoilMoisture\Temporary\processing\bare_land_mask.tif ---from: ROIAlg.combine_mask (ROIAlg.py:Line145) -[04/08/2024 09:20:56] [24760] [INFO]- combine_mask success, path: D:\micro\LWork\SoilMoisture\Temporary\processing\bare_land_mask.tif ---from: ROIAlg.combine_mask (ROIAlg.py:Line145) -[04/08/2024 09:20:57] [24760] [INFO]- combine_mask success, path: D:\micro\LWork\SoilMoisture\Temporary\processing\bare_land_mask.tif ---from: ROIAlg.combine_mask (ROIAlg.py:Line145) -[04/08/2024 09:20:58] [24760] [INFO]- combine_mask success, path: D:\micro\LWork\SoilMoisture\Temporary\processing\bare_land_mask.tif ---from: ROIAlg.combine_mask (ROIAlg.py:Line145) -[04/08/2024 09:20:58] [24760] [INFO]- combine_mask success! ---from: SoilMoistureMain.create_roi (SoilMoistureMain.py:Line231) -[04/08/2024 09:20:59] [24760] [INFO]- cal_roi success, path: D:\micro\LWork\SoilMoisture\Temporary\preprocessed\LocalIncidenceAngle_preprocessed.tif ---from: ROIAlg.cal_roi (ROIAlg.py:Line174) -[04/08/2024 09:20:59] [24760] [INFO]- create ROI image success! ---from: SoilMoistureMain.create_roi (SoilMoistureMain.py:Line237) -[04/08/2024 09:20:59] [24760] [INFO]- progress bar: 50% ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line251) -[04/08/2024 09:21:07] [24760] [INFO]- lee process finish: D:\micro\LWork\SoilMoisture\Temporary\preprocessed\HH_preprocessed.tif ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line259) -[04/08/2024 09:21:13] [24760] [INFO]- lee process finish: D:\micro\LWork\SoilMoisture\Temporary\preprocessed\VV_preprocessed.tif ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line259) -[04/08/2024 09:21:20] [24760] [INFO]- lee process finish: D:\micro\LWork\SoilMoisture\Temporary\preprocessed\VH_preprocessed.tif ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line259) -[04/08/2024 09:21:26] [24760] [INFO]- lee process finish: D:\micro\LWork\SoilMoisture\Temporary\preprocessed\HV_preprocessed.tif ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line259) -[04/08/2024 09:24:16] [24760] [INFO]- blocking tifs success! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line277) -[04/08/2024 10:34:19] [24760] [INFO]- total:110, block:0 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:20] [24760] [INFO]- total:110, block:1 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:20] [24760] [INFO]- total:110, block:2 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:20] [24760] [INFO]- total:110, block:3 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:20] [24760] [INFO]- total:110, block:4 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:20] [24760] [INFO]- total:110, block:5 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:20] [24760] [INFO]- total:110, block:6 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:20] [24760] [INFO]- total:110, block:7 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:20] [24760] [INFO]- total:110, block:8 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:21] [24760] [INFO]- total:110, block:9 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:21] [24760] [INFO]- total:110, block:10 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:21] [24760] [INFO]- total:110, block:11 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:21] [24760] [INFO]- total:110, block:12 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:21] [24760] [INFO]- total:110, block:13 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:21] [24760] [INFO]- total:110, block:14 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:21] [24760] [INFO]- total:110, block:15 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:21] [24760] [INFO]- total:110, block:16 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:21] [24760] [INFO]- total:110, block:17 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:22] [24760] [INFO]- total:110, block:18 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:22] [24760] [INFO]- total:110, block:19 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:22] [24760] [INFO]- total:110, block:20 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:22] [24760] [INFO]- total:110, block:21 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:22] [24760] [INFO]- total:110, block:22 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:22] [24760] [INFO]- total:110, block:23 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:22] [24760] [INFO]- total:110, block:24 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:23] [24760] [INFO]- total:110, block:25 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:23] [24760] [INFO]- total:110, block:26 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:23] [24760] [INFO]- total:110, block:27 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:23] [24760] [INFO]- total:110, block:28 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:24] [24760] [INFO]- total:110, block:29 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:24] [24760] [INFO]- total:110, block:30 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:24] [24760] [INFO]- total:110, block:31 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:24] [24760] [INFO]- total:110, block:32 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:24] [24760] [INFO]- total:110, block:33 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:24] [24760] [INFO]- total:110, block:34 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:24] [24760] [INFO]- total:110, block:35 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:24] [24760] [INFO]- total:110, block:36 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:25] [24760] [INFO]- total:110, block:37 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:25] [24760] [INFO]- total:110, block:38 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:25] [24760] [INFO]- total:110, block:39 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:25] [24760] [INFO]- total:110, block:40 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:25] [24760] [INFO]- total:110, block:41 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:25] [24760] [INFO]- total:110, block:42 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:25] [24760] [INFO]- total:110, block:43 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:25] [24760] [INFO]- total:110, block:44 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:25] [24760] [INFO]- total:110, block:45 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:26] [24760] [INFO]- total:110, block:46 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:26] [24760] [INFO]- total:110, block:47 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:26] [24760] [INFO]- total:110, block:48 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:26] [24760] [INFO]- total:110, block:49 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:26] [24760] [INFO]- total:110, block:50 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:26] [24760] [INFO]- total:110, block:51 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:26] [24760] [INFO]- total:110, block:52 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:26] [24760] [INFO]- total:110, block:53 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:26] [24760] [INFO]- total:110, block:54 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:27] [24760] [INFO]- total:110, block:55 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:27] [24760] [INFO]- total:110, block:56 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:27] [24760] [INFO]- total:110, block:57 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:27] [24760] [INFO]- total:110, block:58 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:27] [24760] [INFO]- total:110, block:59 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:27] [24760] [INFO]- total:110, block:60 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:27] [24760] [INFO]- total:110, block:61 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:27] [24760] [INFO]- total:110, block:62 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:27] [24760] [INFO]- total:110, block:63 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:28] [24760] [INFO]- total:110, block:64 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:28] [24760] [INFO]- total:110, block:65 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:28] [24760] [INFO]- total:110, block:66 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:28] [24760] [INFO]- total:110, block:67 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:28] [24760] [INFO]- total:110, block:68 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:28] [24760] [INFO]- total:110, block:69 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:28] [24760] [INFO]- total:110, block:70 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:28] [24760] [INFO]- total:110, block:71 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:29] [24760] [INFO]- total:110, block:72 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:29] [24760] [INFO]- total:110, block:73 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:29] [24760] [INFO]- total:110, block:74 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:29] [24760] [INFO]- total:110, block:75 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:29] [24760] [INFO]- total:110, block:76 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:29] [24760] [INFO]- total:110, block:77 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:29] [24760] [INFO]- total:110, block:78 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:29] [24760] [INFO]- total:110, block:79 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:29] [24760] [INFO]- total:110, block:80 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:30] [24760] [INFO]- total:110, block:81 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:30] [24760] [INFO]- total:110, block:82 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:30] [24760] [INFO]- total:110, block:83 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:30] [24760] [INFO]- total:110, block:84 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:30] [24760] [INFO]- total:110, block:85 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:30] [24760] [INFO]- total:110, block:86 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:30] [24760] [INFO]- total:110, block:87 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:30] [24760] [INFO]- total:110, block:88 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:30] [24760] [INFO]- total:110, block:89 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:31] [24760] [INFO]- total:110, block:90 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:31] [24760] [INFO]- total:110, block:91 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:31] [24760] [INFO]- total:110, block:92 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:31] [24760] [INFO]- total:110, block:93 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:31] [24760] [INFO]- total:110, block:94 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:31] [24760] [INFO]- total:110, block:95 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:31] [24760] [INFO]- total:110, block:96 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:31] [24760] [INFO]- total:110, block:97 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:32] [24760] [INFO]- total:110, block:98 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:32] [24760] [INFO]- total:110, block:99 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:32] [24760] [INFO]- total:110, block:100 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:32] [24760] [INFO]- total:110, block:101 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:32] [24760] [INFO]- total:110, block:102 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:32] [24760] [INFO]- total:110, block:103 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:32] [24760] [INFO]- total:110, block:104 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:32] [24760] [INFO]- total:110, block:105 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:33] [24760] [INFO]- total:110, block:106 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:33] [24760] [INFO]- total:110, block:107 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:33] [24760] [INFO]- total:110, block:108 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:33] [24760] [INFO]- total:110, block:109 calculating soil_moisture! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line358) -[04/08/2024 10:34:34] [24760] [INFO]- [, , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ] ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line362) -[04/08/2024 10:34:34] [24760] [INFO]- progress bar: 80% ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line363) -[04/08/2024 10:34:40] [24760] [INFO]- cal_roi success, path: D:\micro\LWork\SoilMoisture\Temporary\processing\product\HJ2E_MYC_QPS_001752_E118.0_N37.7_20230204_SLC_AHV_L10000010458-cal-SMC.tif ---from: ROIAlg.cal_roi (ROIAlg.py:Line174) -[04/08/2024 10:34:40] [24760] [INFO]- cal soil_moisture success! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line381) -[04/08/2024 10:34:53] [24760] [INFO]- process_handle success! ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line437) -[04/08/2024 10:34:53] [24760] [INFO]- progress bar: 100% ---from: SoilMoistureMain.process_handle (SoilMoistureMain.py:Line438) -[04/08/2024 10:34:53] [24760] [INFO]- successful production of SoilMoisture products! ---from: SoilMoistureMain. (SoilMoistureMain.py:Line465) -[04/08/2024 10:34:55] [24760] [INFO]- running use time: 1:16:19.200685 ---from: SoilMoistureMain. (SoilMoistureMain.py:Line473) diff --git a/soilMoisture-S-SAR/run_log/SoilMoisture2024-04-08-10-34-17.log b/soilMoisture-S-SAR/run_log/SoilMoisture2024-04-08-10-34-17.log deleted file mode 100644 index e69de29..0000000 diff --git a/soilMoisture-S-SAR/run_log/SoilMoisture2024-04-08-10-34-18.log b/soilMoisture-S-SAR/run_log/SoilMoisture2024-04-08-10-34-18.log deleted file mode 100644 index e69de29..0000000 diff --git a/soilMoisture-S-SAR/run_log/SoilMoisture2024-04-08-10-34-20.log b/soilMoisture-S-SAR/run_log/SoilMoisture2024-04-08-10-34-20.log deleted file mode 100644 index e69de29..0000000 diff --git a/soilMoisture-S-SAR/run_log/SoilMoisture2024-04-08-10-34-22.log b/soilMoisture-S-SAR/run_log/SoilMoisture2024-04-08-10-34-22.log deleted file mode 100644 index e69de29..0000000 diff --git a/tool/algorithm/block/blockprocess.py b/tool/algorithm/block/blockprocess.py index 4621058..db3555e 100644 --- a/tool/algorithm/block/blockprocess.py +++ b/tool/algorithm/block/blockprocess.py @@ -480,3 +480,9 @@ class BlockProcess: # img[img<0] = 0 # ImageHandler.write_img(product_path, proj, geos, img) +if __name__ == '__main__': + fn = r'G:\测试数据\cut' + bp = BlockProcess() + img_dir, img_name = bp.get_file_names(fn, ['jpg']) + dir_dict = bp.get_same_img(img_dir, img_name) + print(1) \ No newline at end of file diff --git a/tool/algorithm/image/ImageHandle.py b/tool/algorithm/image/ImageHandle.py index b83ef1d..818209d 100644 --- a/tool/algorithm/image/ImageHandle.py +++ b/tool/algorithm/image/ImageHandle.py @@ -595,7 +595,8 @@ class ImageHandler: t_data = self.get_data(tif_path) t_data = t_data.astype(float) t_data = np.sqrt(t_data[0] ** 2 + t_data[1] ** 2) - + t_data[np.isnan(t_data)] = 0 + t_data[np.where(t_data == -9999)] = 0 t_r = self.get_img_height(tif_path) t_c = self.get_img_width(tif_path) if t_r > 10000 or t_c > 10000: @@ -632,8 +633,8 @@ class ImageHandler: min = np.percentile(t_data, 2) # np.nanmin(t_data) max = np.percentile(t_data, 98) # np.nanmax(t_data) t_data[np.isnan(t_data)] = max - if (max - min) < 256: - t_data = (t_data - min) / (max - min) * 255 + # if (max - min) < 256: + t_data = (t_data - min) / (max - min) * 255 out_img = Image.fromarray(t_data) out_img = out_img.resize((q_c, q_r)) # 重采样 out_img = out_img.convert("L") # 转换成灰度图 @@ -677,7 +678,9 @@ class ImageHandler: return scopes -# if __name__ == '__main__': +if __name__ == '__main__': + fn = r"D:\micro\SWork\Ortho\Output\HJ2E_KSC_STRIP_006199_E85.8_N44.2_20231124_SLC_HHHV_L10000135594-Ortho\HJ2E_KSC_STRIP_006199_E85.8_N44.2_20231124_SLC_h_h_L10000135594-Ortho.tif" + ImageHandler().write_quick_view(fn) # path = r'D:\BaiduNetdiskDownload\GZ\lon.rdr' # path2 = r'D:\BaiduNetdiskDownload\GZ\lat.rdr' # path3 = r'D:\BaiduNetdiskDownload\GZ\lon_lat.tif'