资源简介

因TRMM原数据为竖状条带,空间投影有问题,需要对其进行校正。以TRMM 3B43降水数据为例,在matlab环境中对其进行旋转,定义投影,配准操作,使得数据可用性提高。

资源截图

代码片段和文件信息

clearclc
for year=1998:2016
    for  month=1:1
        if month<10
            monthstr=cat(2‘0‘num2str(month));
        else
            monthstr=num2str(month);
        end
        yearstr=num2str(year);
        filename=cat(2‘3B43.‘yearstrmonthstr‘01.7.HDF‘);
        precipitation = hdfread(filename‘/Grid/precipitation‘);
        rain_90rot = rot90(precipitation);
        [hw]=size(precipitation);
        lat=[hw];
        lon=[hw];
        
        for i_lat = 1:w
            for j_lo

评论

共有 条评论