|
@@ -0,0 +1,125 @@
|
|
|
+import pandas as pd
|
|
|
+
|
|
|
+def sunlight(CLHLS_data):
|
|
|
+ years = [2011, 2014, 2018]
|
|
|
+ for year in years:
|
|
|
+ #读取日照数据
|
|
|
+ sunlight_data_last = pd.read_excel(f"气象数据/2000-2020年按年逐年日照/【{year-1}年】逐年日照.xlsx")
|
|
|
+ sunlight_data_last = sunlight_data_last[["省份", "累积日照"]]
|
|
|
+ sunlight_data_last = sunlight_data_last.groupby('省份', as_index=False).mean()
|
|
|
+ sunlight_data_last = sunlight_data_last.rename(columns={"累积日照":"last_sunlight"})
|
|
|
+ sunlight_data_before_last = pd.read_excel(f"气象数据/2000-2020年按年逐年日照/【{year-2}年】逐年日照.xlsx")
|
|
|
+ sunlight_data_before_last = sunlight_data_before_last[["省份", "累积日照"]]
|
|
|
+ sunlight_data_before_last = sunlight_data_before_last.groupby('省份', as_index=False).mean()
|
|
|
+ sunlight_data_before_last = sunlight_data_before_last.rename(columns={"累积日照":"before_sunlight"})
|
|
|
+ #合并日照
|
|
|
+ table_merge = pd.merge(CLHLS_data, sunlight_data_last, left_on="province", right_on="省份", how='left')
|
|
|
+ table_merge = pd.merge(table_merge, sunlight_data_before_last, left_on="province", right_on="省份", how='left')
|
|
|
+ #更新CLHLS表
|
|
|
+ CLHLS_data['last_year_sunlight'+"_"+str(year)[-2:]] = table_merge['last_sunlight'].values
|
|
|
+ CLHLS_data['before_last_sunlight'+"_"+str(year)[-2:]] = table_merge['before_sunlight'].values
|
|
|
+ CLHLS_data.to_csv("CLHLS/clhls_1998_2018_p_n_m.csv",index=False)
|
|
|
+ print(year)
|
|
|
+
|
|
|
+def wind(CLHLS_data):
|
|
|
+ years = [2011, 2014, 2018]
|
|
|
+ for year in years:
|
|
|
+ #读取日照数据
|
|
|
+ wind_data_last = pd.read_excel(f"气象数据/2000-2020年按年逐年风速/【{year-1}年】逐年风速.xlsx")
|
|
|
+ wind_data_last = wind_data_last[["省份", "平均风速"]]
|
|
|
+ wind_data_last = wind_data_last.groupby('省份', as_index=False).mean()
|
|
|
+ wind_data_last = wind_data_last.rename(columns={"平均风速":"last_wind"})
|
|
|
+ wind_data_before_last = pd.read_excel(f"气象数据/2000-2020年按年逐年风速/【{year-2}年】逐年风速.xlsx")
|
|
|
+ wind_data_before_last = wind_data_before_last[["省份", "平均风速"]]
|
|
|
+ wind_data_before_last = wind_data_before_last.groupby('省份', as_index=False).mean()
|
|
|
+ wind_data_before_last = wind_data_before_last.rename(columns={"平均风速":"before_wind"})
|
|
|
+ #合并日照
|
|
|
+ table_merge = pd.merge(CLHLS_data, wind_data_last, left_on="province", right_on="省份", how='left')
|
|
|
+ table_merge = pd.merge(table_merge, wind_data_before_last, left_on="province", right_on="省份", how='left')
|
|
|
+ #更新CLHLS表
|
|
|
+ CLHLS_data['last_year_wind'+"_"+str(year)[-2:]] = table_merge['last_wind'].values
|
|
|
+ CLHLS_data['before_last_wind'+"_"+str(year)[-2:]] = table_merge['before_wind'].values
|
|
|
+ CLHLS_data.to_csv("CLHLS/clhls_1998_2018_p_n_m.csv",index=False)
|
|
|
+ print(year)
|
|
|
+
|
|
|
+def rain(CLHLS_data):
|
|
|
+ years = [2011, 2014, 2018]
|
|
|
+ for year in years:
|
|
|
+ #读取日照数据
|
|
|
+ rain_data_last = pd.read_excel(f"气象数据/2000-2020年按年逐年降水/【{year-1}年】逐年降水.xlsx")
|
|
|
+ rain_data_last = rain_data_last[["省份", "累积降水"]]
|
|
|
+ rain_data_last = rain_data_last.groupby('省份', as_index=False).mean()
|
|
|
+ rain_data_last = rain_data_last.rename(columns={"累积降水":"last_rain"})
|
|
|
+ rain_data_before_last = pd.read_excel(f"气象数据/2000-2020年按年逐年降水/【{year-2}年】逐年降水.xlsx")
|
|
|
+ rain_data_before_last = rain_data_before_last[["省份", "累积降水"]]
|
|
|
+ rain_data_before_last = rain_data_before_last.groupby('省份', as_index=False).mean()
|
|
|
+ rain_data_before_last = rain_data_before_last.rename(columns={"累积降水":"before_rain"})
|
|
|
+ #合并日照
|
|
|
+ table_merge = pd.merge(CLHLS_data, rain_data_last, left_on="province", right_on="省份", how='left')
|
|
|
+ table_merge = pd.merge(table_merge, rain_data_before_last, left_on="province", right_on="省份", how='left')
|
|
|
+ #更新CLHLS表
|
|
|
+ CLHLS_data['last_year_rain'+"_"+str(year)[-2:]] = table_merge['last_rain'].values
|
|
|
+ CLHLS_data['before_last_rain'+"_"+str(year)[-2:]] = table_merge['before_rain'].values
|
|
|
+ CLHLS_data.to_csv("CLHLS/clhls_1998_2018_p_n_m.csv",index=False)
|
|
|
+ print(year)
|
|
|
+
|
|
|
+def temperature(CLHLS_data):
|
|
|
+ years = [2011, 2014, 2018]
|
|
|
+ for year in years:
|
|
|
+ #读取日照数据
|
|
|
+ temperature_data_last = pd.read_excel(f"气象数据/2000-2020年按年逐年气温/【{year-1}年】逐年气温.xlsx")
|
|
|
+ temperature_data_last = temperature_data_last[["省份", "平均气温"]]
|
|
|
+ temperature_data_last = temperature_data_last.groupby('省份', as_index=False).mean()
|
|
|
+ temperature_data_last = temperature_data_last.rename(columns={"平均气温":"last_temperature"})
|
|
|
+ temperature_data_before_last = pd.read_excel(f"气象数据/2000-2020年按年逐年气温/【{year-2}年】逐年气温.xlsx")
|
|
|
+ temperature_data_before_last = temperature_data_before_last[["省份", "平均气温"]]
|
|
|
+ temperature_data_before_last = temperature_data_before_last.groupby('省份', as_index=False).mean()
|
|
|
+ temperature_data_before_last = temperature_data_before_last.rename(columns={"平均气温":"before_temperature"})
|
|
|
+ #合并日照
|
|
|
+ table_merge = pd.merge(CLHLS_data, temperature_data_last, left_on="province", right_on="省份", how='left')
|
|
|
+ table_merge = pd.merge(table_merge, temperature_data_before_last, left_on="province", right_on="省份", how='left')
|
|
|
+ #更新CLHLS表
|
|
|
+ CLHLS_data['last_year_temperature'+"_"+str(year)[-2:]] = table_merge['last_temperature'].values
|
|
|
+ CLHLS_data['before_last_temperature'+"_"+str(year)[-2:]] = table_merge['before_temperature'].values
|
|
|
+ CLHLS_data.to_csv("CLHLS/clhls_1998_2018_p_n_m.csv",index=False)
|
|
|
+ print(year)
|
|
|
+
|
|
|
+def humidity(CLHLS_data):
|
|
|
+ years = [2011, 2014, 2018]
|
|
|
+ for year in years:
|
|
|
+ #读取日照数据
|
|
|
+ humidity_data_last = pd.read_excel(f"气象数据/2000-2020年按年逐年湿度/【{year-1}年】逐年湿度.xlsx")
|
|
|
+ humidity_data_last = humidity_data_last[["省份", "平均湿度"]]
|
|
|
+ humidity_data_last = humidity_data_last.groupby('省份', as_index=False).mean()
|
|
|
+ humidity_data_last = humidity_data_last.rename(columns={"平均湿度":"last_humidity"})
|
|
|
+ humidity_data_before_last = pd.read_excel(f"气象数据/2000-2020年按年逐年湿度/【{year-2}年】逐年湿度.xlsx")
|
|
|
+ humidity_data_before_last = humidity_data_before_last[["省份", "平均湿度"]]
|
|
|
+ humidity_data_before_last = humidity_data_before_last.groupby('省份', as_index=False).mean()
|
|
|
+ humidity_data_before_last = humidity_data_before_last.rename(columns={"平均湿度":"before_humidity"})
|
|
|
+ #合并日照
|
|
|
+ table_merge = pd.merge(CLHLS_data, humidity_data_last, left_on="province", right_on="省份", how='left')
|
|
|
+ table_merge = pd.merge(table_merge, humidity_data_before_last, left_on="province", right_on="省份", how='left')
|
|
|
+ #更新CLHLS表
|
|
|
+ CLHLS_data['last_year_humidity'+"_"+str(year)[-2:]] = table_merge['last_humidity'].values
|
|
|
+ CLHLS_data['before_last_humidity'+"_"+str(year)[-2:]] = table_merge['before_humidity'].values
|
|
|
+ CLHLS_data.to_csv("CLHLS/clhls_1998_2018_p_n_m.csv",index=False)
|
|
|
+ print(year)
|
|
|
+
|
|
|
+if __name__ == "__main__":
|
|
|
+ #读取CLHLS数据
|
|
|
+ CLHLS_data = pd.read_csv("CLHLS/clhls_1998_2018_p_n.csv")
|
|
|
+ CLHLS_data.to_csv("CLHLS/clhls_1998_2018_p_n_m.csv",index=False)
|
|
|
+ CLHLS_data = pd.read_csv("CLHLS/clhls_1998_2018_p_n_m.csv")
|
|
|
+ sunlight(CLHLS_data)
|
|
|
+ CLHLS_data = pd.read_csv("CLHLS/clhls_1998_2018_p_n_m.csv")
|
|
|
+ wind(CLHLS_data)
|
|
|
+ CLHLS_data = pd.read_csv("CLHLS/clhls_1998_2018_p_n_m.csv")
|
|
|
+ rain(CLHLS_data)
|
|
|
+ CLHLS_data = pd.read_csv("CLHLS/clhls_1998_2018_p_n_m.csv")
|
|
|
+ temperature(CLHLS_data)
|
|
|
+ CLHLS_data = pd.read_csv("CLHLS/clhls_1998_2018_p_n_m.csv")
|
|
|
+ humidity(CLHLS_data)
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|