diff options
| author | Nyall Dawson <nyall.dawson@gmail.com> | 2020-02-26 09:37:13 +1000 |
|---|---|---|
| committer | Nyall Dawson <nyall.dawson@gmail.com> | 2020-03-04 19:01:56 +1000 |
| commit | d49ce528bbdc3e71e971db2ca5f0acd4ee649208 (patch) | |
| tree | b61440385f213d980065588a8cb8c296e995a51a /include/proj/internal/coordinateoperation_internal.hpp | |
| parent | 72f5bb21ae35999b4994766e47b81900e8826c33 (diff) | |
| download | PROJ-d49ce528bbdc3e71e971db2ca5f0acd4ee649208.tar.gz PROJ-d49ce528bbdc3e71e971db2ca5f0acd4ee649208.zip | |
Add capability to force a fixed value for a non-specified CRS component
while mapping ESRI projections, and map the Behrman projection to
cae with lat_ts=30, lon_0=0
Diffstat (limited to 'include/proj/internal/coordinateoperation_internal.hpp')
| -rw-r--r-- | include/proj/internal/coordinateoperation_internal.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/proj/internal/coordinateoperation_internal.hpp b/include/proj/internal/coordinateoperation_internal.hpp index a75427c2..69f30933 100644 --- a/include/proj/internal/coordinateoperation_internal.hpp +++ b/include/proj/internal/coordinateoperation_internal.hpp @@ -76,7 +76,8 @@ struct ESRIParamMapping { const char *esri_name; const char *wkt2_name; int epsg_code; - float fixed_value; + const char *fixed_value; + bool is_fixed_value; }; struct ESRIMethodMapping { |
