Main Content

matlab.io.hdfeos.sw.inqMaps

네임스페이스: matlab.io.hdfeos.sw

주사(Swath) 지리 위치 관계에 대한 정보

구문

[map,offset,increment] = inqMaps(swathID)

설명

[map,offset,increment] = inqMaps(swathID)는 차원 매핑 목록, 각 지리 위치 관계의 오프셋 및 각 지리 위치 관계의 증분을 반환합니다. 이러한 매핑에는 인덱스가 지정되지 않습니다. map은 셀형 배열로, 각 요소에는 각 매핑의 차원 이름이 슬래시로 구분되어 포함되어 있습니다. offsetincrement에는 각 지리 위치 관계의 오프셋과 증분이 포함됩니다.

이 함수는 HDF-EOS 라이브러리의 SWinqmaps 루틴에 대응합니다.

예제

import matlab.io.hdfeos.*
swfid = sw.open('swath.hdf');
swathID = sw.attach(swfid,'Example Swath');
[dimmap,offset,increment] = sw.inqMaps(swathID);
sw.detach(swathID);
sw.close(swfid);