<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Cannot set metadata from rasters in File Geodatabase API Questions</title>
    <link>https://community.esri.com/t5/file-geodatabase-api-questions/cannot-set-metadata-from-rasters/m-p/724292#M1150</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: lshipman&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I've taken a look at this and I had no problem opening a RasterDataset and reading/writing it's Documentation. Take a look at the following code.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp; 
&amp;nbsp; // Open a RasterDataset table.
&amp;nbsp; Table table;
&amp;nbsp; if ((hr = geodatabase.OpenTable(L"\\RasterDataset", table)) != S_OK)
&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp; wcout &amp;lt;&amp;lt; "An error occurred while opening the table." &amp;lt;&amp;lt; endl;
&amp;nbsp;&amp;nbsp;&amp;nbsp; ErrorInfo::GetErrorDescription(hr, errorText);
&amp;nbsp;&amp;nbsp;&amp;nbsp; wcout &amp;lt;&amp;lt; errorText &amp;lt;&amp;lt; "(" &amp;lt;&amp;lt; hr &amp;lt;&amp;lt; ")." &amp;lt;&amp;lt; endl;
&amp;nbsp;&amp;nbsp;&amp;nbsp; return -1;
&amp;nbsp; }

&amp;nbsp; // GetDefitition
&amp;nbsp; wcout &amp;lt;&amp;lt; "Test GetDefitition:" &amp;lt;&amp;lt; endl;
&amp;nbsp; string xmlDef;
&amp;nbsp; if ((hr = table.GetDefinition(xmlDef)) != S_OK)
&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp; wcout &amp;lt;&amp;lt; "An error occurred getting the table definition." &amp;lt;&amp;lt; endl;
&amp;nbsp;&amp;nbsp;&amp;nbsp; ErrorInfo::GetErrorDescription(hr, errorText);
&amp;nbsp;&amp;nbsp;&amp;nbsp; wcout &amp;lt;&amp;lt; errorText &amp;lt;&amp;lt; "(" &amp;lt;&amp;lt; hr &amp;lt;&amp;lt; ")." &amp;lt;&amp;lt; endl;
&amp;nbsp;&amp;nbsp;&amp;nbsp; return -1;
&amp;nbsp; }

&amp;nbsp; wcout &amp;lt;&amp;lt; wstring(xmlDef.begin(), xmlDef.end()) &amp;lt;&amp;lt; endl;

&amp;nbsp; // GetDocumentation
&amp;nbsp; wcout &amp;lt;&amp;lt; "Test GetDocumentation:" &amp;lt;&amp;lt; endl;
&amp;nbsp; string xmlDef2;
&amp;nbsp; if ((hr = table.GetDocumentation(xmlDef2)) != S_OK)
&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp; wcout &amp;lt;&amp;lt; "An error occurred getting the table documentation." &amp;lt;&amp;lt; endl;
&amp;nbsp;&amp;nbsp;&amp;nbsp; ErrorInfo::GetErrorDescription(hr, errorText);
&amp;nbsp;&amp;nbsp;&amp;nbsp; wcout &amp;lt;&amp;lt; errorText &amp;lt;&amp;lt; "(" &amp;lt;&amp;lt; hr &amp;lt;&amp;lt; ")." &amp;lt;&amp;lt; endl;
&amp;nbsp;&amp;nbsp;&amp;nbsp; return -1;
&amp;nbsp; }

&amp;nbsp; wcout &amp;lt;&amp;lt; wstring(xmlDef2.begin(), xmlDef2.end()) &amp;lt;&amp;lt; endl;

&amp;nbsp; ofstream myfile;
&amp;nbsp; myfile.open("../SchemaRetrieval/example.xml", ios::out);
&amp;nbsp; myfile &amp;lt;&amp;lt; xmlDef;
&amp;nbsp; xmlDef.clear();
&amp;nbsp; myfile.close();

&amp;nbsp; // Open the newDoc.xml to load documentation for the feature class.
&amp;nbsp; string docDef;
&amp;nbsp; string docLine;
&amp;nbsp; ifstream docFile("../SchemaRetrieval/newDoc.xml");
&amp;nbsp; while (getline(docFile, docLine))
&amp;nbsp;&amp;nbsp;&amp;nbsp; docDef.append(docLine + "\n");
&amp;nbsp; docFile.close();

&amp;nbsp; // SetDocumentation
&amp;nbsp; wcout &amp;lt;&amp;lt; "Test SetDocumentation:" &amp;lt;&amp;lt; endl;
&amp;nbsp; if ((hr = table.SetDocumentation(docDef)) != S_OK)
&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp; wcout &amp;lt;&amp;lt; "An error occurred setting the table documentation." &amp;lt;&amp;lt; endl;
&amp;nbsp;&amp;nbsp;&amp;nbsp; ErrorInfo::GetErrorDescription(hr, errorText);
&amp;nbsp;&amp;nbsp;&amp;nbsp; wcout &amp;lt;&amp;lt; errorText &amp;lt;&amp;lt; "(" &amp;lt;&amp;lt; hr &amp;lt;&amp;lt; ")." &amp;lt;&amp;lt; endl;
&amp;nbsp;&amp;nbsp;&amp;nbsp; return -1;
&amp;nbsp; }

&amp;nbsp; // Validate that the doc was set.
&amp;nbsp; wcout &amp;lt;&amp;lt; "Validate that the doc was set:" &amp;lt;&amp;lt; endl;
&amp;nbsp; if ((hr = table.GetDocumentation(xmlDef2)) != S_OK)
&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp; wcout &amp;lt;&amp;lt; "An error occurred getting the table documentation." &amp;lt;&amp;lt; endl;
&amp;nbsp;&amp;nbsp;&amp;nbsp; ErrorInfo::GetErrorDescription(hr, errorText);
&amp;nbsp;&amp;nbsp;&amp;nbsp; wcout &amp;lt;&amp;lt; errorText &amp;lt;&amp;lt; "(" &amp;lt;&amp;lt; hr &amp;lt;&amp;lt; ")." &amp;lt;&amp;lt; endl;
&amp;nbsp;&amp;nbsp;&amp;nbsp; return -1;
&amp;nbsp; }

&amp;nbsp; wcout &amp;lt;&amp;lt; wstring(xmlDef2.begin(), xmlDef2.end()) &amp;lt;&amp;lt; endl;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 12 Dec 2021 06:58:41 GMT</pubDate>
    <dc:creator>Anonymous User</dc:creator>
    <dc:date>2021-12-12T06:58:41Z</dc:date>
    <item>
      <title>Cannot set metadata from rasters</title>
      <link>https://community.esri.com/t5/file-geodatabase-api-questions/cannot-set-metadata-from-rasters/m-p/724290#M1148</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: eddy scheper&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In the FGDB API beta 3 version there are no methods to set of change the metadata/documentation of raster datasets.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;For Feature Classes and Tables you can use &lt;/SPAN&gt;&lt;SPAN style="font-style:italic;"&gt;Geodatabase.OpenTable&lt;/SPAN&gt;&lt;SPAN&gt; to open the dataset and use &lt;/SPAN&gt;&lt;SPAN style="font-style:italic;"&gt;Table.SetDocumentation&lt;/SPAN&gt;&lt;SPAN&gt; to set the metadata. However, you can not open Raster Datasets with this Geodatabase method.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The Geodatabase class has a method to directly get the metadata of a dataset: &lt;/SPAN&gt;&lt;SPAN style="font-style:italic;"&gt;Geodatabase.GetDatasetDocumentation&lt;/SPAN&gt;&lt;SPAN&gt;. But a method &lt;/SPAN&gt;&lt;SPAN style="font-style:italic;"&gt;Geodatabase.SetDatasetDocumentation&lt;/SPAN&gt;&lt;SPAN&gt; is not available.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Will this method be available in the Final Release?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;With kind regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Eddy Scheper&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 May 2011 08:40:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/file-geodatabase-api-questions/cannot-set-metadata-from-rasters/m-p/724290#M1148</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2011-05-09T08:40:10Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot set metadata from rasters</title>
      <link>https://community.esri.com/t5/file-geodatabase-api-questions/cannot-set-metadata-from-rasters/m-p/724291#M1149</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;While raster data will not be supported for this release of the API, you should be able to open the table and use SetDocumentation. I will investigate this and get back to you .&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 May 2011 18:12:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/file-geodatabase-api-questions/cannot-set-metadata-from-rasters/m-p/724291#M1149</guid>
      <dc:creator>LanceShipman</dc:creator>
      <dc:date>2011-05-09T18:12:52Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot set metadata from rasters</title>
      <link>https://community.esri.com/t5/file-geodatabase-api-questions/cannot-set-metadata-from-rasters/m-p/724292#M1150</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: lshipman&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I've taken a look at this and I had no problem opening a RasterDataset and reading/writing it's Documentation. Take a look at the following code.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp; 
&amp;nbsp; // Open a RasterDataset table.
&amp;nbsp; Table table;
&amp;nbsp; if ((hr = geodatabase.OpenTable(L"\\RasterDataset", table)) != S_OK)
&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp; wcout &amp;lt;&amp;lt; "An error occurred while opening the table." &amp;lt;&amp;lt; endl;
&amp;nbsp;&amp;nbsp;&amp;nbsp; ErrorInfo::GetErrorDescription(hr, errorText);
&amp;nbsp;&amp;nbsp;&amp;nbsp; wcout &amp;lt;&amp;lt; errorText &amp;lt;&amp;lt; "(" &amp;lt;&amp;lt; hr &amp;lt;&amp;lt; ")." &amp;lt;&amp;lt; endl;
&amp;nbsp;&amp;nbsp;&amp;nbsp; return -1;
&amp;nbsp; }

&amp;nbsp; // GetDefitition
&amp;nbsp; wcout &amp;lt;&amp;lt; "Test GetDefitition:" &amp;lt;&amp;lt; endl;
&amp;nbsp; string xmlDef;
&amp;nbsp; if ((hr = table.GetDefinition(xmlDef)) != S_OK)
&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp; wcout &amp;lt;&amp;lt; "An error occurred getting the table definition." &amp;lt;&amp;lt; endl;
&amp;nbsp;&amp;nbsp;&amp;nbsp; ErrorInfo::GetErrorDescription(hr, errorText);
&amp;nbsp;&amp;nbsp;&amp;nbsp; wcout &amp;lt;&amp;lt; errorText &amp;lt;&amp;lt; "(" &amp;lt;&amp;lt; hr &amp;lt;&amp;lt; ")." &amp;lt;&amp;lt; endl;
&amp;nbsp;&amp;nbsp;&amp;nbsp; return -1;
&amp;nbsp; }

&amp;nbsp; wcout &amp;lt;&amp;lt; wstring(xmlDef.begin(), xmlDef.end()) &amp;lt;&amp;lt; endl;

&amp;nbsp; // GetDocumentation
&amp;nbsp; wcout &amp;lt;&amp;lt; "Test GetDocumentation:" &amp;lt;&amp;lt; endl;
&amp;nbsp; string xmlDef2;
&amp;nbsp; if ((hr = table.GetDocumentation(xmlDef2)) != S_OK)
&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp; wcout &amp;lt;&amp;lt; "An error occurred getting the table documentation." &amp;lt;&amp;lt; endl;
&amp;nbsp;&amp;nbsp;&amp;nbsp; ErrorInfo::GetErrorDescription(hr, errorText);
&amp;nbsp;&amp;nbsp;&amp;nbsp; wcout &amp;lt;&amp;lt; errorText &amp;lt;&amp;lt; "(" &amp;lt;&amp;lt; hr &amp;lt;&amp;lt; ")." &amp;lt;&amp;lt; endl;
&amp;nbsp;&amp;nbsp;&amp;nbsp; return -1;
&amp;nbsp; }

&amp;nbsp; wcout &amp;lt;&amp;lt; wstring(xmlDef2.begin(), xmlDef2.end()) &amp;lt;&amp;lt; endl;

&amp;nbsp; ofstream myfile;
&amp;nbsp; myfile.open("../SchemaRetrieval/example.xml", ios::out);
&amp;nbsp; myfile &amp;lt;&amp;lt; xmlDef;
&amp;nbsp; xmlDef.clear();
&amp;nbsp; myfile.close();

&amp;nbsp; // Open the newDoc.xml to load documentation for the feature class.
&amp;nbsp; string docDef;
&amp;nbsp; string docLine;
&amp;nbsp; ifstream docFile("../SchemaRetrieval/newDoc.xml");
&amp;nbsp; while (getline(docFile, docLine))
&amp;nbsp;&amp;nbsp;&amp;nbsp; docDef.append(docLine + "\n");
&amp;nbsp; docFile.close();

&amp;nbsp; // SetDocumentation
&amp;nbsp; wcout &amp;lt;&amp;lt; "Test SetDocumentation:" &amp;lt;&amp;lt; endl;
&amp;nbsp; if ((hr = table.SetDocumentation(docDef)) != S_OK)
&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp; wcout &amp;lt;&amp;lt; "An error occurred setting the table documentation." &amp;lt;&amp;lt; endl;
&amp;nbsp;&amp;nbsp;&amp;nbsp; ErrorInfo::GetErrorDescription(hr, errorText);
&amp;nbsp;&amp;nbsp;&amp;nbsp; wcout &amp;lt;&amp;lt; errorText &amp;lt;&amp;lt; "(" &amp;lt;&amp;lt; hr &amp;lt;&amp;lt; ")." &amp;lt;&amp;lt; endl;
&amp;nbsp;&amp;nbsp;&amp;nbsp; return -1;
&amp;nbsp; }

&amp;nbsp; // Validate that the doc was set.
&amp;nbsp; wcout &amp;lt;&amp;lt; "Validate that the doc was set:" &amp;lt;&amp;lt; endl;
&amp;nbsp; if ((hr = table.GetDocumentation(xmlDef2)) != S_OK)
&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp; wcout &amp;lt;&amp;lt; "An error occurred getting the table documentation." &amp;lt;&amp;lt; endl;
&amp;nbsp;&amp;nbsp;&amp;nbsp; ErrorInfo::GetErrorDescription(hr, errorText);
&amp;nbsp;&amp;nbsp;&amp;nbsp; wcout &amp;lt;&amp;lt; errorText &amp;lt;&amp;lt; "(" &amp;lt;&amp;lt; hr &amp;lt;&amp;lt; ")." &amp;lt;&amp;lt; endl;
&amp;nbsp;&amp;nbsp;&amp;nbsp; return -1;
&amp;nbsp; }

&amp;nbsp; wcout &amp;lt;&amp;lt; wstring(xmlDef2.begin(), xmlDef2.end()) &amp;lt;&amp;lt; endl;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 06:58:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/file-geodatabase-api-questions/cannot-set-metadata-from-rasters/m-p/724292#M1150</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2021-12-12T06:58:41Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot set metadata from rasters</title>
      <link>https://community.esri.com/t5/file-geodatabase-api-questions/cannot-set-metadata-from-rasters/m-p/724293#M1151</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: eddy scheper&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hello Lance,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I did some tests using a part of your code (see below).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
int main()
{
&amp;nbsp; long hr;

&amp;nbsp; wstring errorText;

&amp;nbsp; // Open the geodatabase.
&amp;nbsp; Geodatabase geodatabase;
&amp;nbsp; if ((hr = OpenGeodatabase(L"C:/Project/Mpt/Data/TestFileGeodatabase10.gdb", geodatabase)) != S_OK)
&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp; wcout &amp;lt;&amp;lt; "An error occurred while opening the geodatabase." &amp;lt;&amp;lt; endl;
&amp;nbsp;&amp;nbsp;&amp;nbsp; ErrorInfo::GetErrorDescription(hr, errorText);
&amp;nbsp;&amp;nbsp;&amp;nbsp; wcout &amp;lt;&amp;lt; errorText &amp;lt;&amp;lt; "(" &amp;lt;&amp;lt; hr &amp;lt;&amp;lt; ")." &amp;lt;&amp;lt; endl;
&amp;nbsp;&amp;nbsp;&amp;nbsp; return -1;
&amp;nbsp; }

&amp;nbsp; // Open the table.
&amp;nbsp; Table table;
&amp;nbsp; //if ((hr = geodatabase.OpenTable(L"\\basis2", table)) != S_OK)
&amp;nbsp; //if ((hr = geodatabase.OpenTable(L"\\basis2xx", table)) != S_OK)
&amp;nbsp; if ((hr = geodatabase.OpenTable(L"\\bodem5000", table)) != S_OK)
&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp; wcout &amp;lt;&amp;lt; "An error occurred while opening the table." &amp;lt;&amp;lt; endl;
&amp;nbsp;&amp;nbsp;&amp;nbsp; ErrorInfo::GetErrorDescription(hr, errorText);
&amp;nbsp;&amp;nbsp;&amp;nbsp; wcout &amp;lt;&amp;lt; errorText &amp;lt;&amp;lt; "(" &amp;lt;&amp;lt; hr &amp;lt;&amp;lt; ")." &amp;lt;&amp;lt; endl;
&amp;nbsp;&amp;nbsp;&amp;nbsp; return -1;
&amp;nbsp; }

&amp;nbsp; // Open the metadata.
&amp;nbsp; string xml;
&amp;nbsp; if ((hr = table.GetDocumentation(xml)) != S_OK)
&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp; wcout &amp;lt;&amp;lt; "An error occurred while getting the metadata." &amp;lt;&amp;lt; endl;
&amp;nbsp;&amp;nbsp;&amp;nbsp; ErrorInfo::GetErrorDescription(hr, errorText);
&amp;nbsp;&amp;nbsp;&amp;nbsp; wcout &amp;lt;&amp;lt; errorText &amp;lt;&amp;lt; "(" &amp;lt;&amp;lt; hr &amp;lt;&amp;lt; ")." &amp;lt;&amp;lt; endl;
&amp;nbsp;&amp;nbsp;&amp;nbsp; return -1;
&amp;nbsp; }

&amp;nbsp; cout &amp;lt;&amp;lt; xml;

&amp;nbsp; return 0;
}
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;These are my results.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- Using the Feature Class \\basis2 &amp;gt;&amp;gt; OK, I get the metadata.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- Using a non existent Feature Class \\basis2xx &amp;gt;&amp;gt; OK, I get a proper error message.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- Using the Raster Dataset bodem5000 &amp;gt;&amp;gt; NOK, I get an windows error (in VS2010: Unhandled exception at 0x1038b235 (FileGDBAPID.dll) in MptFgdbExe.exe: 0xC0000005: Access violation reading location 0x00000000.).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;When using the following code instead, I get the proper metadata.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
&amp;nbsp; string xml;
&amp;nbsp; if ((hr = geodatabase.GetDatasetDocumentation(L"\\bodem5000",L"Raster Dataset",xml)) != S_OK) {
&amp;nbsp;&amp;nbsp;&amp;nbsp; wcout &amp;lt;&amp;lt; "An error occurred while getting the metadata." &amp;lt;&amp;lt; endl;
 ErrorInfo::GetErrorDescription(hr, errorText);
 wcout &amp;lt;&amp;lt; errorText &amp;lt;&amp;lt; "(" &amp;lt;&amp;lt; hr &amp;lt;&amp;lt; ")." &amp;lt;&amp;lt; endl;
&amp;nbsp;&amp;nbsp;&amp;nbsp; return -1;
&amp;nbsp; }
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm using the FileGeodatabase I send you today. It contains both the basis2 and bodem5000 datasets.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hopefully this helps to solve the problem.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;With kind regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Eddy Scheper&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 06:58:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/file-geodatabase-api-questions/cannot-set-metadata-from-rasters/m-p/724293#M1151</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2021-12-12T06:58:44Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot set metadata from rasters</title>
      <link>https://community.esri.com/t5/file-geodatabase-api-questions/cannot-set-metadata-from-rasters/m-p/724294#M1152</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I was able to get and set the documentation for both the basis2 and bodem5000 datasets using the current build of the API. This using table.GetDocumentation and table.SetDocumentation. We should be posting final soon.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 May 2011 19:04:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/file-geodatabase-api-questions/cannot-set-metadata-from-rasters/m-p/724294#M1152</guid>
      <dc:creator>LanceShipman</dc:creator>
      <dc:date>2011-05-13T19:04:35Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot set metadata from rasters</title>
      <link>https://community.esri.com/t5/file-geodatabase-api-questions/cannot-set-metadata-from-rasters/m-p/724295#M1153</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: eddy scheper&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Great! I can't wait.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Eddy&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 May 2011 20:47:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/file-geodatabase-api-questions/cannot-set-metadata-from-rasters/m-p/724295#M1153</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2011-05-13T20:47:07Z</dc:date>
    </item>
  </channel>
</rss>

