diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2019-01-22 10:58:13 +0100 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2019-01-22 10:58:13 +0100 |
| commit | c048292f3b8e408e6a81700a74d9b44d532227ac (patch) | |
| tree | 4793063b442e2768d7bea3fd1c96f80a55140093 /src/iso19111/c_api.cpp | |
| parent | 5c86b290e2c5686cbf5100eb71e32b0362a989fc (diff) | |
| download | PROJ-c048292f3b8e408e6a81700a74d9b44d532227ac.tar.gz PROJ-c048292f3b8e408e6a81700a74d9b44d532227ac.zip | |
Coordinate operation computation with boundcrs / wktext: drop useless early bindins terms in generated pipeline (fixes #1232)
Diffstat (limited to 'src/iso19111/c_api.cpp')
| -rw-r--r-- | src/iso19111/c_api.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/iso19111/c_api.cpp b/src/iso19111/c_api.cpp index 06a3c02e..de11f181 100644 --- a/src/iso19111/c_api.cpp +++ b/src/iso19111/c_api.cpp @@ -337,7 +337,7 @@ PJ *proj_create(PJ_CONTEXT *ctx, const char *text) { assert(text); // Only connect to proj.db if needed - if( strstr(text, "proj=") == nullptr || strstr(text, "init=") != nullptr ) { + if (strstr(text, "proj=") == nullptr || strstr(text, "init=") != nullptr) { getDBcontextNoException(ctx, __FUNCTION__); } try { |
