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
|
610
|
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
|
610
|
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
|
610
|
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
|
610
|
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
|
610
|
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
|
0
|
12
|
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
|
82
|
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
|
82
|
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
|
60
|
Online Status |
Offline
|
Date Last Visited |
11-11-2020
02:22 AM
|