Python计算栅格SPEI

栅格尺度的SPEI采用python,主要是参照
https://climate-indices.readthedocs.io/en/latest/
该网站详细介绍了计算SPEI以及其他气候指数的过程,不懂的同学就先下载例子进行试验。

第一步配置环境变量

该python编译器是采用的Anaconda3,如果没有安装的童靴先安装,这里安装以及环境变量的配置步骤就省略了。

接下来就是SPEI运行环境的配置了

conda create -n indices_env python=3.6
conda activate indices_env
pip install climate-indices
conda install -c conda-forge nco
image.png

在安装的Anaconda3的这里运行代码,每一次新打开运行之前都需要执行 conda activate indices_env

第二步 数据处理

该程序计算的原始数据格式为nc5,并且数据(以降水为例)为维度(第一维),经度(第二维),时间(第三维),如果数据不一样的话要进行处理。包括单位都要与例子的数据一致
接下来以CMIP5数据为例进行数据处理,以下是处理了多个nc文件,一般情况下只有一个nc文件,我这里的数据是有多个

import os
from netCDF4 import Dataset
import netCDF4 as nc
import numpy as np
import pandas as pd
import datetime as dt
import calendar

input = r"E:\Paper\paper5\01-data\SPEI--RCP\OriginalData\Cal_SPEI_Th\pr\historical"
output = r"E:\Paper\paper5\01-data\SPEI--RCP\OriginalDataDownScallingChangeUnit"
def ReadData(filePath):
    with nc.Dataset(filePath) as file:
        file.set_auto_mask(False)
        variables = {x: file[x][()] for x in file.variables}
    return variables
def WriteData(inputVariables,outputData,outputFilePath,variableName,variableUnits):
    newDataFile = nc.Dataset(outputFilePath, 'w', format='NETCDF4')
    #define dimensions
    long=newDataFile.createDimension('lon',size=length_lon)
    lati=newDataFile.createDimension('lat',size=length_lat)
    times=newDataFile.createDimension('time',size=length_time)
    #define variables
    lon=newDataFile.createVariable('lon','f8',dimensions='lon')
    lat=newDataFile.createVariable('lat','f8',dimensions='lat')
    time=newDataFile.createVariable('time','S10',dimensions='time')
    var=newDataFile.createVariable(variableName,'f8',dimensions=('lat','lon','time'))
    #add data to variables
    lon[:]=inputVariables['lon']
    lat[:]=inputVariables['lat']
    #time=inputVariables['time']
    var[...]=outputData
    timeRange=pd.date_range(dt.datetime(1850,1,1,0),dt.datetime(2005,12,1,0),freq='MS')
    for i in range(timeRange.shape[0]):
        time[i]=timeRange[i].strftime('%Y-%m-%d %H:%M')
        year = int(time[i][0:4])
        month = int(time[i][5:7])
        day_temp = calendar.monthrange(year,month)
        day = day_temp[1]
    #add attributes
    #global attributes
    newDataFile.times=time.shape[0]
    newDataFile.start_time=time[0]
    newDataFile.end_time = time[-1]

    ##variables attributes
    ###lon
    lon.units = "degrees_east"
    lon.long_name = "longitude"
    lon.standard_name = "longitude"
    lon.axis = "X"
    # lon.valid_min = 0.25
    # lon.valid_max = 359.75
    ###lat
    lat.units = "degrees_north"
    lat.long_name = "latitude"
    lat.standard_name = "latitude"
    lat.axis = "Y"
    # lat.valid_min =  -89.75
    # lat.valid_max = 89.75

    ###lwe
    var.units = variableUnits
    var.grid_mapping = "WGS84"
    var.coordinates = "lat lon time"

    ##close file
    newDataFile.close()
def getDay():
    day=np.zeros(length_time)
    timeRange = pd.date_range(dt.datetime(1850, 1, 1, 0), dt.datetime(2005, 12, 1, 0), freq='MS')
    for i in range(timeRange.shape[0]):
        year = int(timeRange[i].strftime('%Y-%m-%d %H:%M')[0:4])
        month = int(timeRange[i].strftime('%Y-%m-%d %H:%M')[5:7])
        day_temp = calendar.monthrange(year,month)
        day[i] = day_temp[1]
    return day
def datachange(filepath):
        variables = ReadData(filepath)
        var_data=variables['pr']
        a=np.swapaxes(var_data,2,0)
        b=np.swapaxes(a,0,1)
        day=getDay()
        b = b * day * 24 * 36 * 100  # 这里代表修改了原始数据的降水单位
        WriteData(variables, b, fileOutPath, 'pr', 'millimeter')
filenames = os.listdir(input)
for i in range (len(filenames)):
    filepath = input + "\\" + filenames[i]
    fileOutPath = output + "\\" + filenames[i]
    data = Dataset(filepath)
    # all_vars = data.variables.keys()  # 获取所有变量名称
    # all_vars_info = data.variables.items()  # 查看每一个变量的信息
    var2 = 'lat'
    var_info2 = data.variables[var2]
    length_lat = len(list(var_info2))
    # print(var_info2)
    var3 = 'lon'
    var_info3 = data.variables[var3]
    length_lon = len(list(var_info3))
    # print(var_info3)
    var4 = 'time'
    var_info4 = data.variables[var4]
    length_time = len(list(var_info4))
    datachange(filepath)

计算PET

上述数据处理好之后,就可以计算计算PET了
PET通过这里的程序进行计算,只提供了两种计算方式,Thornthwaite和Hargreaves
以Thornthwaite为例

process_climate_indices --index pet --periodicity monthly --netcdf_temp E:/Paper/paper5/01-data/SPEI--RCP/OriginalDataDownScallingChangeUnit/tas/tas_Amon_CanESM2_rcp85_r1i1p1_200601-210012.nc --var_name_temp tas --output_file_base E:/Paper/paper5/01-data/SPEI--RCP/output_PET/CanESM2_rcp85 --multiprocessing all_but_one

计算SPEI

process_climate_indices --index spei --periodicity monthly --netcdf_precip E:/Paper/paper5/01-data/SPEI--RCP/OriginalDataDownScallingChangeUnit/pr/pr_Amon_CanESM2_rcp85_r1i1p1_200601-210012.nc --var_name_precip pre --netcdf_pet E:/Paper/paper5/01-data/SPEI--RCP/output_PET/CanESM2_rcp85_pet_thornthwaite.nc --var_name_pet pet_thornthwaite --output_file_base E:/Paper/paper5/01-data/SPEI--RCP/output_SPEI/CanESM2_rcp85 --scales 1 3 6 12  --calibration_start_year 2006 --calibration_end_year 2100 --multiprocessing all
image.png

上面的计算步骤需要修改路径和变量名称,见图片上说明

批量处理

上面的计算过程只是针对单个的文件,但是如果有多个nc文件需要计算SPEI,就可以采用以下程序,将以下程序复制保存成bat文件,然后将bat文件拖进Anaconda Prompt里运行即可

echo off
setlocal enabledelayedexpansion
for %%i in (E:\Paper\paper5\01-data\SPEI--RCP\OriginalDataDownScallingChangeUnit\tas\*.nc) do (
set file=%%~ni
echo %%~ni
echo !file:~3!
set outputfile=E:\Paper\paper5\01-data\SPEI--RCP\output_PET1\pet!file:~3!
echo !outputfile!
process_climate_indices --index pet --periodicity monthly --netcdf_temp %%i --var_name_temp tas --output_file_base !outputfile!  --multiprocessing all_but_one
echo off
setlocal enabledelayedexpansion
for %%i in (E:\Paper\paper5\01-data\SPEI--RCP\OriginalDataDownScallingChangeUnit\pr\*.nc) do (
set prfile=%%i 
set prfilename=%%~ni
set petfile=E:\Paper\paper5\01-data\SPEI--RCP\output_PET1\pet!prfilename:~2!_pet_thornthwaite.nc
set outputfile=E:\Paper\paper5\01-data\SPEI--RCP\output_SPEI1\spei!prfilename:~2!
echo !prfile!
echo !petfile!
echo !outputfile!
process_climate_indices --index spei --periodicity monthly --netcdf_precip !prfile! --var_name_precip pre --netcdf_pet !petfile! --var_name_pet pet_thornthwaite --output_file_base !outputfile! --scales 1 3 6 12  --calibration_start_year 2006 --calibration_end_year 2100 --multiprocessing all
     )
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,980评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,178评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,868评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,498评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,492评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,521评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,910评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,569评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,793评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,559评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,639评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,342评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,931评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,904评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,144评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,833评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,350评论 2 342

推荐阅读更多精彩内容

  • 夜莺2517阅读 127,708评论 1 9
  • 版本:ios 1.2.1 亮点: 1.app角标可以实时更新天气温度或选择空气质量,建议处女座就不要选了,不然老想...
    我就是沉沉阅读 6,876评论 1 6
  • 我是黑夜里大雨纷飞的人啊 1 “又到一年六月,有人笑有人哭,有人欢乐有人忧愁,有人惊喜有人失落,有的觉得收获满满有...
    陌忘宇阅读 8,520评论 28 53
  • 兔子虽然是枚小硕 但学校的硕士四人寝不够 就被分到了博士楼里 两人一间 在学校的最西边 靠山 兔子的室友身体不好 ...
    待业的兔子阅读 2,583评论 2 9