compile gdal with ESRI FileGDB_API Ubuntu Planned maintenance scheduled April 17/18, 2019 at...
Can smartphones with the same camera sensor have different image quality?
Do working physicists consider Newtonian mechanics to be "falsified"?
Problem when applying foreach loop
How to retrograde a note sequence in Finale?
Why don't the Weasley twins use magic outside of school if the Trace can only find the location of spells cast?
I'm having difficulty getting my players to do stuff in a sandbox campaign
Two different pronunciation of "понял"
How should I respond to a player wanting to catch a sword between their hands?
Can the prologue be the backstory of your main character?
Need a suitable toxic chemical for a murder plot in my novel
The following signatures were invalid: EXPKEYSIG 1397BC53640DB551
How to add zeros to reach same number of decimal places in tables?
Why is "Captain Marvel" translated as male in Portugal?
3 doors, three guards, one stone
Can't figure this one out.. What is the missing box?
Geometric mean and geometric standard deviation
Array/tabular for long multiplication
Can I throw a sword that doesn't have the Thrown property at someone?
Is above average number of years spent on PhD considered a red flag in future academia or industry positions?
Windows 10: How to Lock (not sleep) laptop on lid close?
Are my PIs rude or am I just being too sensitive?
What to do with post with dry rot?
How to rotate it perfectly?
Strange behaviour of Check
compile gdal with ESRI FileGDB_API Ubuntu
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
Announcing the arrival of Valued Associate #679: Cesar Manara
Unicorn Meta Zoo #1: Why another podcast?How to get FGDB support in GDAL 1.9 without compiling?How do I open the GeoDB files on NaturalEarthData's site without ArcGIS?Building FGDB support for GDAL 1.10 on UbuntuCannot update GDAL on UbuntuError Compiling GDAL with ESRI FileGeodatabase Support On Ubuntu 16.04FileGDBAPI.dll not registering in Windows 7 x64PyWPS installation won't see cpl_port.hInstalling gdal with FileGDB support using brew fails silentlyProblem in install GDAL on virtualenv Ubuntu16.04PostGIS 2.5 error while compiling from source on Ubuntu Server 18.04
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
I'm trying to build GDAL on Ubuntu 16.04 with ESRI FileGDB_API driver support. I've followed the instructions here: https://trac.osgeo.org/gdal/wiki/FileGDB and have attempted to pass the location of proj included with the ESRI FileGDB_API. Here is my configure command:
./configure --with-static-proj=/usr/local/FileGDB_API/lib/libFileGDBAPI.so --with-fgdb=/usr/local/FileGDB_API
And the error:
configure: error: --without-static-proj and --with-fgdb are both available. There might be some incompatibility between system libproj and the embedded copy within libFileGDBAPI
I get the same error if I remove --with-static-proj
and if I use --without-static-proj
.
I'm attempting to compile gdal 2.3.1 and I'm using the FileGDB_API version 1.5 for gcc 5.1.
gdal esri-geodatabase ubuntu ubuntugis
bumped to the homepage by Community♦ 12 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I'm trying to build GDAL on Ubuntu 16.04 with ESRI FileGDB_API driver support. I've followed the instructions here: https://trac.osgeo.org/gdal/wiki/FileGDB and have attempted to pass the location of proj included with the ESRI FileGDB_API. Here is my configure command:
./configure --with-static-proj=/usr/local/FileGDB_API/lib/libFileGDBAPI.so --with-fgdb=/usr/local/FileGDB_API
And the error:
configure: error: --without-static-proj and --with-fgdb are both available. There might be some incompatibility between system libproj and the embedded copy within libFileGDBAPI
I get the same error if I remove --with-static-proj
and if I use --without-static-proj
.
I'm attempting to compile gdal 2.3.1 and I'm using the FileGDB_API version 1.5 for gcc 5.1.
gdal esri-geodatabase ubuntu ubuntugis
bumped to the homepage by Community♦ 12 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I'm trying to build GDAL on Ubuntu 16.04 with ESRI FileGDB_API driver support. I've followed the instructions here: https://trac.osgeo.org/gdal/wiki/FileGDB and have attempted to pass the location of proj included with the ESRI FileGDB_API. Here is my configure command:
./configure --with-static-proj=/usr/local/FileGDB_API/lib/libFileGDBAPI.so --with-fgdb=/usr/local/FileGDB_API
And the error:
configure: error: --without-static-proj and --with-fgdb are both available. There might be some incompatibility between system libproj and the embedded copy within libFileGDBAPI
I get the same error if I remove --with-static-proj
and if I use --without-static-proj
.
I'm attempting to compile gdal 2.3.1 and I'm using the FileGDB_API version 1.5 for gcc 5.1.
gdal esri-geodatabase ubuntu ubuntugis
I'm trying to build GDAL on Ubuntu 16.04 with ESRI FileGDB_API driver support. I've followed the instructions here: https://trac.osgeo.org/gdal/wiki/FileGDB and have attempted to pass the location of proj included with the ESRI FileGDB_API. Here is my configure command:
./configure --with-static-proj=/usr/local/FileGDB_API/lib/libFileGDBAPI.so --with-fgdb=/usr/local/FileGDB_API
And the error:
configure: error: --without-static-proj and --with-fgdb are both available. There might be some incompatibility between system libproj and the embedded copy within libFileGDBAPI
I get the same error if I remove --with-static-proj
and if I use --without-static-proj
.
I'm attempting to compile gdal 2.3.1 and I'm using the FileGDB_API version 1.5 for gcc 5.1.
gdal esri-geodatabase ubuntu ubuntugis
gdal esri-geodatabase ubuntu ubuntugis
edited Jul 19 '18 at 22:41
PolyGeo♦
54k1782246
54k1782246
asked Jul 19 '18 at 16:53
TheoBarnhart-USGSTheoBarnhart-USGS
62
62
bumped to the homepage by Community♦ 12 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 12 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
I was able to get past this error by installing libproj-dev
(ubuntu) and running
./configure --with-static-proj4 --with-fgdb=/usr/local/path
Welcome to GIS Stackexchange! As a new user, please be sure to take the Tour.
– smiller
Oct 2 '18 at 3:19
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "79"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f290004%2fcompile-gdal-with-esri-filegdb-api-ubuntu%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I was able to get past this error by installing libproj-dev
(ubuntu) and running
./configure --with-static-proj4 --with-fgdb=/usr/local/path
Welcome to GIS Stackexchange! As a new user, please be sure to take the Tour.
– smiller
Oct 2 '18 at 3:19
add a comment |
I was able to get past this error by installing libproj-dev
(ubuntu) and running
./configure --with-static-proj4 --with-fgdb=/usr/local/path
Welcome to GIS Stackexchange! As a new user, please be sure to take the Tour.
– smiller
Oct 2 '18 at 3:19
add a comment |
I was able to get past this error by installing libproj-dev
(ubuntu) and running
./configure --with-static-proj4 --with-fgdb=/usr/local/path
I was able to get past this error by installing libproj-dev
(ubuntu) and running
./configure --with-static-proj4 --with-fgdb=/usr/local/path
edited Oct 2 '18 at 4:20
smiller
2,309217
2,309217
answered Oct 2 '18 at 2:41
Joseph FieldsJoseph Fields
1
1
Welcome to GIS Stackexchange! As a new user, please be sure to take the Tour.
– smiller
Oct 2 '18 at 3:19
add a comment |
Welcome to GIS Stackexchange! As a new user, please be sure to take the Tour.
– smiller
Oct 2 '18 at 3:19
Welcome to GIS Stackexchange! As a new user, please be sure to take the Tour.
– smiller
Oct 2 '18 at 3:19
Welcome to GIS Stackexchange! As a new user, please be sure to take the Tour.
– smiller
Oct 2 '18 at 3:19
add a comment |
Thanks for contributing an answer to Geographic Information Systems Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f290004%2fcompile-gdal-with-esri-filegdb-api-ubuntu%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown