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);