- 积分
- 617
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2019-11-7
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
这里面出现了覆盖图像,如何去掉呢?程序:
clc
clear
%% p
dir_obs=dir('G:\A201911200010165690'); %将数据存储所在的文件夹内
filename_obs=cell(length(dir_obs),1);
for i=1:length(dir_obs)
filename_obs(i,1)={dir_obs(i).name};
end
filename='G:\A201911200010165690\';
for i=3:length(dir_obs)
filename_obs{i,1}=strcat(filename,filename_obs{i,1});
end
for i=9:9
% 9.10.11数据异常
% 读取数据HDF FY_3D MWTS传感器
filename=filename_obs{i,1};
fileInfo = h5info(filename);% 查看数据里面有哪种类型的数据
latitude=double(hdf5read(filename,'./Geolocation/Latitude')); %纬度数据
longitude=double(hdf5read(filename,'./Geolocation/Longitude')); %经度数据
T_earth=double(hdf5read(filename,'./Data/Earth_Obs_BT'));
T_earth=T_earth/100;
T_earth1=T_earth(:,:,1); % 亮温
%m_proj('lambert','lat',[-90,90],'long',[-180,180]);
m_proj('miller','lat',[-90,90]);
m_pcolor(longitude,latitude,T_earth1);
%m_scatter(lon1,lat1,T_eart1);
%m_contourf(longitude,latitude,T_earth1);
shading interp ;
colormap('jet');
hold on
m_coast();
m_grid('linestyle',':','tickdir','out','fontsize',11);
colorbar('location','southoutside');
end
|
-
一个时刻的亮温图
|