- 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
您可能关注的文档
最近下载
- 右肾重复肾护理查房.pptx
- 7.2 坚持走和平发展道路 课件初中读本.ppt
- 羚锐制药营运资金管理分析.docx
- 2025年自考学士学位英语试题.pdf VIP
- 湘少版小学英语六年级下册单元知识总结(全册).doc
- 第五组利用基因工程酵母生产抗疟疾药物前体--青蒿酸课件.pptx VIP
- T_CECS 1067-2022 直滤式滤板技术规程.docx
- 最新部编版语文一年级下册教案(全册)教学设计(2025年春-新教材).pdf
- 汽车机械维修工(三级工)技能鉴定考试必备题库大全-上(单选题汇总).docx
- 2024年高考(全国甲卷)英语 完形填空真题深层解析+三年真题+题型策略及练习(学生版+解析版).docx
文档评论(0)