POST
|
We support reading CDF data. Supporting SDC Smart Data Compression is not on in our current plan. We expect to update the supported compilers and operating system versions periodically. Fixing critial bugs as needed.
... View more
05-18-2023
02:17 PM
|
0
|
0
|
1084
|
BLOG
|
It looks like you are using the MacOS version of the API. Use: https://github.com/Esri/file-geodatabase-api/blob/master/FileGDB_API_1.5/FileGDB_API_1_5_64gcc51.tar.gz We need to go to better names at 1.6.
... View more
01-09-2019
03:06 PM
|
0
|
0
|
6542
|
BLOG
|
Can you supply us with: The OS version/distribution (i.e. RHEL, SLES, Ubuntu, etc.) that you are using. Compiler and version (gcc --version) Full terminal session from a clean terminal showing how the environment was setup and full build output.
... View more
01-09-2019
10:58 AM
|
0
|
0
|
6542
|
BLOG
|
The undefined symbol '_ZNSt8ios_base4InitD1Ev@@GLIBCXX_3.4' was reported by several people. They got this when using gcc instead of g++ as their C++ compiler so your CC/CXX vars should either be unset or set to: CC=gcc CXX=g++ This would be the ideal setup if we were recommending one: OS: Ubuntu 18.04 File GDB API Package: https://github.com/Esri/file-geodatabase-api/blob/master/FileGDB_API_1.5/FileGDB_API_1_5_64gcc51.tar.gz Compiler: GCC 7.3.0 Steps: • Run ‘which g++’ and ‘g++ --version’ to make sure you’re picking up the right compiler. • Unpack FileGDB_API_1_5_64gcc51.tar.gz from your $HOME so $HOME/FileGDB_API-64gcc51 is created. • cd to $HOME/FileGDB_API-64gcc51/lib and add that folder to your LD_LIBRARY_PATH $ cd $HOME/FileGDB_API-64gcc51/lib $ export LD_LIBRARY_PATH=${PWD}:${LD_LIBRARY_PATH} • Go to the sample folder and build it: $ cd $HOME/FileGDB_API-64gcc51/samples/GeodatabaseManagement $ make clean all rm -f -v ./GeodatabaseManagement.o ../bin/GeodatabaseManagement g++ -fPIC -O3 -m64 -W -fexceptions -D_CONSOLE -DUNICODE -D_UNICODE -DUNIX -D_REENTRANT -DFILEGDB_API -D__USE_FILE_OFFSET64 -DUNIX_FILEGDB_API -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -I../../include -I. -c GeodatabaseManagement.cpp g++ -fPIC -O3 -m64 -W -fexceptions -D_CONSOLE -DUNICODE -D_UNICODE -DUNIX -D_REENTRANT -DFILEGDB_API -D__USE_FILE_OFFSET64 -DUNIX_FILEGDB_API -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -I../../include -I. -m64 -L../../lib -o ../bin/GeodatabaseManagement ./GeodatabaseManagement.o –lFileGDBAPI • Run it: $ cd ../bin/ $ ./GeodatabaseManagement The geodatabase has been created. The geodatabase has been opened. The geodatabase has been deleted.
... View more
01-08-2019
03:56 PM
|
0
|
0
|
6542
|
BLOG
|
FileGDB_API\samples\ShapeBuffer\ShapeBuffer.cpp provides examples of reading and writing geometries. FileGDB_API\samples\Editing\Editing.cpp provides examples of editing existing data and search.
... View more
01-08-2019
09:54 AM
|
0
|
0
|
6542
|
BLOG
|
To create a geodatabase see FileGDB_API\samples\GeodatabaseManagement\GeodatabaseManagement.cpp // Create a new geodatabase in the current directory. fgdbError hr; wstring errorText; Geodatabase geodatabase; if ((hr = CreateGeodatabase(L"../GeodatabaseManagement/GdbManagement.gdb", geodatabase)) != S_OK) { wcout << "An error occurred while creating the geodatabase." << endl; ErrorInfo::GetErrorDescription(hr, errorText); wcout << errorText << "(" << hr << ")." << endl; return -1; } This is a C++ example. We don't have a Java interface.
... View more
01-08-2019
07:20 AM
|
0
|
0
|
6542
|
POST
|
We added support for reading compressed file geodatabase data at version 1.4 of the File Geodatabase API. The current version of the API can be found at file-geodatabase-api/FileGDB_API_1.5.1 at master · Esri/file-geodatabase-api · GitHub.
... View more
01-18-2018
07:26 AM
|
0
|
2
|
1630
|
POST
|
Editing SQLite data is not currently supported in ArcMap or Pro. We are looking at it for a later (post 2.1) release. Lance
... View more
12-13-2017
10:31 AM
|
0
|
5
|
1710
|
POST
|
Sqlite, SpatiaLite and GeoPackages are supported in Pro. Mobile Geodatabases (.geodatabase) support is being considered for a later release, but not in the Pro 2.1 currently under development. Lance
... View more
08-30-2017
11:56 AM
|
1
|
8
|
1710
|
POST
|
There is no way in the File Geodatabase API to convert a Shape buffer to a SQLGeometry.
... View more
08-22-2017
08:25 AM
|
1
|
0
|
1268
|
POST
|
The File Geodatabase API version 1.5.1 is now available in Git Hub at: https://github.com/Esri/file-geodatabase-api/tree/master/FileGDB_API_1.5.1 This addition includes support for MS Visual Studio 2017. Otherwise nothing else has changed from the 1.5 release.
... View more
08-07-2017
11:25 AM
|
0
|
0
|
816
|
POST
|
I'm sorry to say that the File Geodatabase API does not support pre-10.0 File Geodatabases. The api was built on top of the 10.0 structure and it's not compatible.
... View more
05-24-2017
03:40 PM
|
1
|
0
|
617
|
BLOG
|
Corrected the link in the blog post. Thank you Bryan for pointing this out.
... View more
03-09-2017
05:26 AM
|
0
|
0
|
6542
|
BLOG
|
The File Geodatabase API 1.5 is now available for download from GitHub https://github.com/Esri/file-geodatabase-api/tree/master/FileGDB_API_1.5. The FileGDB 1.5 release is primarily a maintenance release with the addition of a few new compilers and platforms. What’s new at 1.5: MS Visual Studio 2015 support. Allow the use of the Spatial Reference ID to create the spatial reference (BUG-000100781) Support for new operating system versions: Linux: Red Hat SUSE Linux Enterprise Server Ubuntu Windows: Windows 8.1 Windows 10.0 MacOS Yosemite (10.10) El Capitan (10.11) Sierra (10.12) Released under the Apache license. Fixed Issues: BUG-000100782 File Geodatabase: COUNT(0) should return 0 with a WHERE clause that returns no rows (1=0). BUG-000100783 Remove Windows FileGDBAPI.dll's reliance on Microsoft.VC90.CRT. BUG-000088293 FileGDB API throws -2147217395 error when executing SQL query with SQL functions. BUG-000097116 Table::FreeWriteLock does not clear the lock.
... View more
03-07-2017
07:24 AM
|
1
|
22
|
13235
|
Title | Kudos | Posted |
---|---|---|
1 | 05-16-2013 09:31 AM | |
1 | 12-21-2016 08:14 AM | |
1 | 07-29-2016 08:34 AM | |
1 | 04-15-2015 09:20 AM | |
1 | 12-19-2016 04:33 PM |
Online Status |
Offline
|
Date Last Visited |
07-10-2023
04:38 PM
|