有没有办法,如何在h5文件中设置列名?
我可以使用复合数据类型执行此操作,也可以使用H5Table完成此操作。
一个选项也是以这种方式创建属性并保存列的名称。
但是单个数据类型的常用矩阵不能有命名列,是吗?
答案 0 :(得分:1)
据我所知,您无法在原子数据类型中设置列名。正如您所看到的,H5Table的技巧是它创建了一个compund数据类型,其中每个“列”都有一个字段。 LINK
如果我是你,我会在一个属性(字符串数组)中编写列名,并保持数据类型简单。
要在C ++中创建字符串列表,请执行以下操作:
H5::H5File m_h5File;
m_h5File = H5File("MyH5File.h5", H5F_ACC_RDWR);
DataSet theDataSet = m_h5File.openDataSet("/channel001");
H5Object * myObject = &theDataSet;
//The data of the attribute.
vector<string> att_vector;
att_vector.push_back("ColName1");
att_vector.push_back("ColName2 more characters");
att_vector.push_back("ColName3");
const int RANK = 1;
hsize_t dims[RANK];
StrType str_type(PredType::C_S1, H5T_VARIABLE);
dims[0] = att_vector.size(); //The attribute will have 3 strings
DataSpace att_datspc(RANK, dims);
Attribute att(myObject->createAttribute("Column_Names" , str_type, att_datspc));
vector<const char *> cStrArray;
for(int index = 0; index < att_vector.size(); ++index)
{
cStrArray.push_back(att_vector[index].c_str());
}
//att_vector must not change
att.write(str_type, (void*)&cStrArray[0]);