matlab mat geotiffwrite

时间:2021-07-16 14:32:53
【文件属性】:
文件名称:matlab mat geotiffwrite
文件大小:527B
文件格式:M
更新时间:2021-07-16 14:32:53
matlab argis tiff tif geotiffwrite 将matlab格式的文件(mat格式的文件)转换成arcgis可以识别的tif格式文件

网友评论

  • clear clc close all; los=[1 2; 3 4]; Longitude=[28.28 28.29; 28.30 30.32]; Latitude=[110.3 111; 112 113]; save 20170312_20170324.mat los Longitude Latitude %% load 20170312_20170324.mat los Longitude Latitude % mm degree degree R = georasterref('RasterInterpretation','postings',... 'RasterSize', [2 2],... 'LatitudeLimits',[28.270833969116211 30.320833206176758],... 'LongitudeLimits',[1.103966674804688e+02 1.133358306884766e+02]); geotiffwrite('20170312_20170324.tif', los,R); 就这,大家看吧