Importing raster with R from File Geodatabase?GRASS importing same-name rasters failsCheck validity of file...
On what did Lego base the appearance of the new Hogwarts minifigs?
Could quantum mechanics be necessary to analyze some biology scenarios?
Can I retract my name from an already published manuscript?
Avoiding morning and evening handshakes
How to acknowledge an embarrassing job interview, now that I work directly with the interviewer?
How can I mix up weapons for large groups of similar monsters/characters?
Why zero tolerance on nudity in space?
Quenching swords in dragon blood; why?
Inventor that creates machine that grabs man from future
Criticizing long fiction. How is it different from short?
Can the Count of Monte Cristo's calculation of poison dosage be explained?
What can I substitute for soda pop in a sweet pork recipe?
Do any poskim exempt 13-20-year-olds from Mussaf?
How should I state my MS degree in my CV when it was in practice a joint-program?
Do commercial flights continue with an engine out?
What's a good word to describe a public place that looks like it wouldn't be rough?
Why is my solution for the partial pressures of two different gases incorrect?
Which branches of mathematics can be done just in terms of morphisms and composition?
If I delete my router's history can my ISP still provide it to my parents?
How to mitigate "bandwagon attacking" from players?
Metadata API deployments are failing in Spring '19
Table enclosed in curly brackets
Connecting top and bottom of adjacent circles
Activating a Alphanet Faucet Wallet Remotely (without tezos-client)
Importing raster with R from File Geodatabase?
GRASS importing same-name rasters failsCheck validity of file geodatabase using arcpyError importing XML workspace document to file geodatabaseError 999999 when trying to import raster file into geodatabase?Reading File Geodatabase using R?Reading raster datasets from file geodatabase with FME?How to import gdb file data into an Excel sheetHow to export ESRI Geodatabase format .gdb from PostGISExporting all features from file geodatabase to PostgreSQL database to specified schemaImporting multiple .asc files into PostGIS violates check constraint. Why?
How can I importing raster file from gdb into R
Name rater file: Cont_maturite
in gdb : CAROPER_04151.gdb
In wd: c:testcaroper
raster r file-geodatabase import
add a comment |
How can I importing raster file from gdb into R
Name rater file: Cont_maturite
in gdb : CAROPER_04151.gdb
In wd: c:testcaroper
raster r file-geodatabase import
2
I doubt you can. Rasters are not supported by the file geodatabase API, so only Esri clients can access rasters in file geodatabases.
– Vince
Jan 7 '18 at 16:49
add a comment |
How can I importing raster file from gdb into R
Name rater file: Cont_maturite
in gdb : CAROPER_04151.gdb
In wd: c:testcaroper
raster r file-geodatabase import
How can I importing raster file from gdb into R
Name rater file: Cont_maturite
in gdb : CAROPER_04151.gdb
In wd: c:testcaroper
raster r file-geodatabase import
raster r file-geodatabase import
edited Jan 7 '18 at 22:29
PolyGeo♦
53.6k1780240
53.6k1780240
asked Jan 7 '18 at 15:42
dthib65dthib65
161
161
2
I doubt you can. Rasters are not supported by the file geodatabase API, so only Esri clients can access rasters in file geodatabases.
– Vince
Jan 7 '18 at 16:49
add a comment |
2
I doubt you can. Rasters are not supported by the file geodatabase API, so only Esri clients can access rasters in file geodatabases.
– Vince
Jan 7 '18 at 16:49
2
2
I doubt you can. Rasters are not supported by the file geodatabase API, so only Esri clients can access rasters in file geodatabases.
– Vince
Jan 7 '18 at 16:49
I doubt you can. Rasters are not supported by the file geodatabase API, so only Esri clients can access rasters in file geodatabases.
– Vince
Jan 7 '18 at 16:49
add a comment |
1 Answer
1
active
oldest
votes
R spatial packages all depend on GDAL for file read/write, and GDAL uses the OpenFileGDB driver, which can only read vector data sources at this time -
see https://www.gdal.org/drv_openfilegdb.html. The driver provides no write access at all.
If you have a recent version of ArcMap (>=10.3.1) or ArcGis Pro (1.1) installed, you can use the R package arcgisbinding
to connect to ESRI proprietary data sources. This allows read/write access to anything in a File Geodatabase, plus SDE connections, as well as conversion from ESRI's own take on R spatial objects to and from sf
, sp
, and raster
style objects. See https://github.com/R-ArcGIS/r-bridge.
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%2f267186%2fimporting-raster-with-r-from-file-geodatabase%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
R spatial packages all depend on GDAL for file read/write, and GDAL uses the OpenFileGDB driver, which can only read vector data sources at this time -
see https://www.gdal.org/drv_openfilegdb.html. The driver provides no write access at all.
If you have a recent version of ArcMap (>=10.3.1) or ArcGis Pro (1.1) installed, you can use the R package arcgisbinding
to connect to ESRI proprietary data sources. This allows read/write access to anything in a File Geodatabase, plus SDE connections, as well as conversion from ESRI's own take on R spatial objects to and from sf
, sp
, and raster
style objects. See https://github.com/R-ArcGIS/r-bridge.
add a comment |
R spatial packages all depend on GDAL for file read/write, and GDAL uses the OpenFileGDB driver, which can only read vector data sources at this time -
see https://www.gdal.org/drv_openfilegdb.html. The driver provides no write access at all.
If you have a recent version of ArcMap (>=10.3.1) or ArcGis Pro (1.1) installed, you can use the R package arcgisbinding
to connect to ESRI proprietary data sources. This allows read/write access to anything in a File Geodatabase, plus SDE connections, as well as conversion from ESRI's own take on R spatial objects to and from sf
, sp
, and raster
style objects. See https://github.com/R-ArcGIS/r-bridge.
add a comment |
R spatial packages all depend on GDAL for file read/write, and GDAL uses the OpenFileGDB driver, which can only read vector data sources at this time -
see https://www.gdal.org/drv_openfilegdb.html. The driver provides no write access at all.
If you have a recent version of ArcMap (>=10.3.1) or ArcGis Pro (1.1) installed, you can use the R package arcgisbinding
to connect to ESRI proprietary data sources. This allows read/write access to anything in a File Geodatabase, plus SDE connections, as well as conversion from ESRI's own take on R spatial objects to and from sf
, sp
, and raster
style objects. See https://github.com/R-ArcGIS/r-bridge.
R spatial packages all depend on GDAL for file read/write, and GDAL uses the OpenFileGDB driver, which can only read vector data sources at this time -
see https://www.gdal.org/drv_openfilegdb.html. The driver provides no write access at all.
If you have a recent version of ArcMap (>=10.3.1) or ArcGis Pro (1.1) installed, you can use the R package arcgisbinding
to connect to ESRI proprietary data sources. This allows read/write access to anything in a File Geodatabase, plus SDE connections, as well as conversion from ESRI's own take on R spatial objects to and from sf
, sp
, and raster
style objects. See https://github.com/R-ArcGIS/r-bridge.
answered 10 mins ago
obrl_soilobrl_soil
2,293619
2,293619
add a comment |
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%2f267186%2fimporting-raster-with-r-from-file-geodatabase%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
2
I doubt you can. Rasters are not supported by the file geodatabase API, so only Esri clients can access rasters in file geodatabases.
– Vince
Jan 7 '18 at 16:49