Main Content

matlab.io.hdfeos.sw.geoMapInfo

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

명명된 차원에 대한 차원 매핑의 유형

구문

mappingType = geoMapInfo(swathID,dimname)

설명

mappingType = geoMapInfo(swathID,dimname)은 명명된 차원에 대한 차원 매핑의 유형을 반환합니다. mappingType'indexed', 'regular', 'unmapped' 중 하나가 됩니다.

이 루틴은 HDF-EOS 라이브러리 C API의 SWgeomapinfo 함수에 대응합니다.

예제

import matlab.io.hdfeos.*
swfid = sw.open('swath.hdf');
swathID = sw.attach(swfid,'Example Swath');
maptype = sw.geoMapInfo(swathID,'GeoTrack');
sw.detach(swathID);
sw.close(swfid);

참고 항목