In your case, the data is using a custom projection. Custom projections are not supported by the File Geodatabase API. We are considering support for custom projections in a later release of the API.
Geodatabase gdb = Geodatabase.Open("C:\\data10.gdb"); string [] fcs = gdb.GetChildDatasets("\\", "Feature Class"); foreach (string fc in fcs) { Console.WriteLine(fc); Table t = gdb.OpenTable(fc); } gdb.Close();
Signed in members can post, follow updates, and more. New here? Register a free account.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.