making a geotiff file from a netcdf file

6 次查看(过去 30 天)
I tried to convert my netcdf file in to a tiff file. The code i typed in the command window is,
filename='S2B_20190418_L2W_AOI.nc'
ncdisp(filename)
longitude=ncread(filename,'lon')
latitude=ncread(filename,'lat')
surface_442=ncread(filename,'rhos_442')
longitude = double(longitude)
latitude = double(latitude)
surface_442 = double(surface_442)
R = georasterref('RasterSize',size(surface_442),'LatitudeLimits',[39.1072,39.1093],........
'LongitudeLimits',[26.5640,26.5688]);
tiffile ='surface_442.tif'
geotiffwrite(tiffile,surface_442,R)
The last step generates an error of:
Error using tifflib
Unable to open TIFF file "surface_442.tif".
Error in Tiff (line 651)
obj.FileID = tifflib('open',filename,mode);
Error in geotiffwrite>writeGeoTiffFile (line 1482)
tiffObj = Tiff(filename, writeMode);
Error in geotiffwrite (line 271)
writeGeoTiffFile(filename, A, TiffTags, GeoTiffTags, rpcTag,
isClassicTIFF);
I am grateful if you can kindly help to figure this out.

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Import, Export, and Conversion 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by