We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d0a21c commit a2a3ec4Copy full SHA for a2a3ec4
src/gdal.cpp
@@ -508,6 +508,7 @@ Rcpp::List CPL_crs_from_input(Rcpp::CharacterVector input) {
508
OGRSpatialReference *ref = new OGRSpatialReference;
509
handle_axis_order(ref);
510
Rcpp::List crs;
511
+ // const char *options[3] = {"ALLOW_NETWORK_ACCESS=YES", "ALLOW_FILE_ACCESS=YES", NULL}; -> defaults
512
if (ref->SetFromUserInput(input[0]) == OGRERR_NONE) {
513
crs = create_crs(ref, false);
514
crs(0) = input;
0 commit comments