Main Content

matlab.io.hdfeos.sw.periodInfo

命名空间: matlab.io.hdfeos.sw

有关子时间段的信息

语法

[datatype,dims] = periodInfo(swathID,periodID,fieldname)

说明

[datatype,dims] = periodInfo(swathID,periodID,fieldname) 检索有关为给定字段定义的期限的信息。datatype 是字段的数据类型。dims 是子区域的维度。

此函数对应于 HDF-EOS 库 C API 中的 SWperiodinfo 函数,但因为 MATLAB® 采用 FORTRAN 样式排序方法,所以 dims 参数与 C 库 API 相反。

示例

import matlab.io.hdfeos.*
swfid = sw.open('swath.hdf');
swathID = sw.attach(swfid,'Example Swath');
starttime =  25;
stoptime = 425;
periodID = sw.defTimePeriod(swathID,starttime,stoptime,'MIDPOINT');
[ntype,dims] = sw.periodInfo(swathID,periodID,'Temperature');
sw.detach(swathID);
sw.close(swfid);