Setting metadata of FeatureDatasets

182
0
09-29-2017 08:47 AM
ZoltanBordas
New Contributor

I am relatively new to the native FileGDB API. We are trying to replace an ArcObject based module to use the FileGDB API when reading and writing File Geodatabases. We store some private metadata on feature datasets using the idinfo/descript/abstract on the property set:

    IPropertySet properties = metadata.getMetadata();     properties.setProperty("idinfo/descript/abstract", xml);     metadata.setMetadata(properties);

When reading an existing FileGeoDB the native API provides FileGDBAPI::Geodatabase::GetDatasetDocumentation to retrieve the entire metadata segment of the feature dataset. However, I don't find any way of setting this information on new or existing feature datasets. When adding the metadata to the XML specification of the FDS it gets rejected with some general data error.

Has anybody run into the same problem? Is there a solution other than storing the metadata in a separate file?

0 Kudos
0 Replies