diff options
| author | Peter Townsend <38544371+mlptownsend@users.noreply.github.com> | 2021-11-12 06:39:20 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-12 13:39:20 +0100 |
| commit | ac882266b57d04720bb645b8144901127f7427cf (patch) | |
| tree | ff3e30f46124ca53d842e56d69f9447d934f3b67 /src/proj_internal.h | |
| parent | ac113a8898cded7f5359f1edd3abc17a78eee9b4 (diff) | |
| download | PROJ-ac882266b57d04720bb645b8144901127f7427cf.tar.gz PROJ-ac882266b57d04720bb645b8144901127f7427cf.zip | |
Add new option to proj_create_crs_to_crs_from_pj method to force +over on transformation operations (#2914)
Fixes #2512
Diffstat (limited to 'src/proj_internal.h')
| -rw-r--r-- | src/proj_internal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proj_internal.h b/src/proj_internal.h index 6edb6aec..330869e0 100644 --- a/src/proj_internal.h +++ b/src/proj_internal.h @@ -683,6 +683,7 @@ struct pj_ctx{ void *logger_app_data = nullptr; struct projCppContext* cpp_context = nullptr; /* internal context for C++ code */ int use_proj4_init_rules = -1; /* -1 = unknown, 0 = no, 1 = yes */ + bool forceOver = false; int epsg_file_exists = -1; /* -1 = unknown, 0 = no, 1 = yes */ std::string ca_bundle_path{}; |
