geotiff 行列col row转经纬度lon lat

方法1

[A,R,~] = geotiffread(filename);
info = geotiffinfo(filename);
[x,y] = pix2map(R, row, col);
[lat,lon] = projinv(info, x, y)

如果下载的tiff投影为"EPSG: 4326"

[A,R,~] = geotiffread(filename);
info = geotiffinfo(filename);
[lon,lat] = pix2map(R, row, col)

方法2

[Data Lat Lon]=readgeotiff(filename);
function [Data Lat Lon]=readgeotiff(name,varargin)
%%
%
% readgeotiff - A simple function for reading geotiff files with integrated option to read
%        latitude-longitude data and subset using lat-lon limits.
%
%   Syntax -
%        Data=readgeotiff('Filename');
%        [Data Lat Lon]=readgeotiff('Filename');
%        [Data Lat Lon]=readgeotiff('Filename',[latlim],[lonlim]);
%
%
%   Input :-
%        Filename - name/path of the geotiff file
%        latlim - latitude limits in the format [minlat maxlat]
%        lonlim - longitude limits in the format [minlon maxlon]
%   Output :-
%        Data - geotiff image
%        Lat  - Latitude of centre of each grid point
%        Lon  - Longitude of centre of each grid point
%%
if (nargin==1 | nargin==3)
    if nargout==1
        Data=geotiffread(name);
    else
        
        Data=geotiffread(name);
        info=geotiffinfo(name);
        
        height = info.Height; % Height of the image
        width = info.Width; % Width of the image
        [rows,cols] = meshgrid(1:height,1:width);
        
        % Extract Lat-Lon values
        
        [x,y] = pix2map(info.RefMatrix, rows, cols);
        [Lat,Lon] = projinv(info, x,y);
        Lat=Lat'; Lon=Lon';
    end
    if nargin==3
        
        latlim=varargin{1};
        lonlim=varargin{2};
        
        if numel(latlim)==2 & numel(lonlim==2)
            
        l1=(Lat<min(latlim) | Lat>max(latlim));
        l2=(Lon<min(lonlim) | Lon>max(lonlim));
        
        l=l1+l2;
        l(l~=0)=1;
        
        ind=all(l);
        Data(:,ind,:)=[];
        Lat(:,ind)=[];
        Lon(:,ind)=[];
        l(:,ind)=[];
        
        ind=all(l');
        Data(ind,:,:)=[];
        Lat(ind,:)=[];
        Lon(ind,:)=[];
        else
        error('Incorrect map limits! Limits should be defined by two variables in the format [minlimit maxlimit]');
        end
    end
else
    error('Incorrect number of Inputs! Valid number of inputs is 1 or 3.');
end

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值