필터 지우기
필터 지우기

Writing the matlab matrix in geotiff, whats wrong with this script?

조회 수: 3 (최근 30일)
Shakir Hussain
Shakir Hussain 2018년 6월 12일
댓글: Shakir Hussain 2018년 6월 13일
What I am making mistake here?
basename = 'test';
rasterSize = [890 751];
refmat = makerefmat( ...
'RasterSize', rasterSize, 'Latlim', [00.00 44.50], ...
'Lonlim', [67.50 105.0250]);
R = refmatToGeoRasterReference(refmat, rasterSize);
filename = [test '.tif'];
testttif = geotiffwrite(filename, test, R);
I am getting this error Error using horzcat Dimensions of matrices being concatenated are not consistent.

채택된 답변

KSSV
KSSV 2018년 6월 12일
filename = ['test', '.tif'];
  댓글 수: 3
KSSV
KSSV 2018년 6월 12일
Don't take output from geotiffwrite. Simply use:
geotiffwrite(filename, test, R);
Shakir Hussain
Shakir Hussain 2018년 6월 13일
yes, got your point but still getting more error.
Error using internal.map.convertToGeoRasterRef>validGeoRasterReference (line 86) R.RasterSize is inconsistent with rasterSize.
Error in internal.map.convertToGeoRasterRef (line 40) validGeoRasterReference(R, rasterSize, angleUnit), ...
Error in geotiffwrite>validateR (line 851) R = internal.map.convertToGeoRasterRef(R, rasterSize, angle_units, ...
Error in geotiffwrite>validateInputs (line 348) R = validateR(R, size(A), hasColorMap, type);
Error in geotiffwrite (line 238) [filename, A, cmap, R, Params] = validateInputs(filename, A, cmap, R, Params);

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by