- 1、本文档共2页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 5、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 6、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 7、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 8、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
NetCDF格式转换TIFF-以全球GIMMS3g NDVI数据为例
全球GIMMS3g NDVI数据格式为.nc4. 通过Matlab中的 ncdisp即可查看数据内容。
数据范围为全球尺度,[-90 90] [-180 180]
每个GIMMS3g NDVI数据中包含十二幅栅格影像,时间尺度为每月两幅。
Matlab 代码如下
%%
clear;clc
%% set the input path for containing inputdata
InputPath = input\;
% read the nerCDF4 file
% initial image lat [-90 90] lon[-180 180]
filename = *.nc4;
OutputPath=([output\]);
if exist(OutputPath,dir)==0 %when the dir exist, the value is 7,or the value is 0
mkdir(OutputPath); %build the new direct
end
Ifiles = dir([InputPath,filename]);
nIfiles = length(Ifiles);
%% add the reference information
% set the maximum and minimun latitude and longitude
latlim = [-90 90];
lonlim = [-180 180];
% define the geo-reference
R = georefcells(latlim,lonlim,[3600 7200],ColumnsStartFrom,north);
for nf =1:nIfiles
Ifilename = Ifiles(nf).name;
Ifiletime = Ifilename(end-6);
year = Ifilename(end-12:end-9);
year = str2double(year);
IData = ncread([InputPath,Ifilename],ndvi);
% each .nc4 file contain 12 NDVI images in half year
if str2double(Ifiletime) ==1
Imonth = 1;
else
Imonth = 7;
end
for i =1:12
ndvidata = IData(:,:,i);
ndvidata = ndvidata;
% resample the data to 0.05 degree
ndvi05deg=imresize(ndvidata,[3600 7200],nearest);
ndvi05deg= double(ndvi05deg)/10000;
ndvi05deg(ndvi05deg(:,:)= 0)=NaN;
if mod(i,2) == 0
ndviname = year*10000+Imonth*100+2;
ndviname = num2str(ndviname);
% save the mat file
save([OutputPath,ndviname,.mat],ndvi05deg,-v7.3);
% save a TIFF image
geotiffwrite([OutputPath,ndviname],ndvi05deg,R);
%% convert the NDVI from half month to month
% choose the maxinum as the month ndvi vlaue
NDVImax=ndvi05deg;
C1=(NDVImax-NDVI1=0);
C2=(NDVI1-NDVImax0);
NDVImon=C1.*NDVImax+C2.*NDVI1;
% save the mat file
您可能关注的文档
- 试述国际商务谈判中辩的技巧.doc
- 某物业公司财务管理手册制度物业税务管理制度.docx
- 人教版新起点三年级英语下册测试卷4.docx
- 军考数学真题历年军考真题系列.docx
- 初中物理压力压强变化问题含有答案.docx
- 初一科学密度比热容融化和凝固.docx
- 山东省济南市高新区2018度九年级上学期期中考试数学试题word无答案.docx
- 北京化工大学2015化工热力学期末试卷.docx
- 圆的拔高专题训练题.docx
- 高中生物必修常考易错题6.docx
- 讲稿:深入理解“五个注重”把握进一步深化改革统筹部署以钉钉子精神抓好落实.pdf
- 副市长在2025年全市医疗工作会议上的讲话.docx
- 2025年市县处级以上党委(党组)理论学习中心组专题学习计划.docx
- 市民族宗教事务局党组书记、局长2024年度民主生活会个人对照检视发言材料.docx
- 烟草局党组书记2024年度抓基层党建工作述职报告.docx
- (汇编)学习2025年全国教育工作会议精神心得体会发言心得感悟.pdf
- 汇编学习领会在二十届中纪委四次全会上的重要讲话精神心得体会.pdf
- 在2025年镇安全生产、消防安全和生态环境保护第一次全体会议上的讲话提纲.docx
- 书记干部座谈会上的讲话+纪委全会上的讲话.pdf
- 党课:从毛泽东诗词中感悟共产党人初心使命.docx
文档评论(0)