Skip to content

Commit

Permalink
horner: allow arbitrary input type of coordinate
Browse files Browse the repository at this point in the history
Avoids workaround of https://lists.osgeo.org/pipermail/proj/2023-November/011167.html
to be able to deal with geographic coordinates
  • Loading branch information
rouault committed Nov 21, 2023
1 parent f759fe5 commit b65b88a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/transformations/horner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,7 @@ PJ *PROJECTION(horner) {
P->inv3d = nullptr;
P->fwd = nullptr;
P->inv = nullptr;
P->left = P->right = PJ_IO_UNITS_PROJECTED;
P->left = P->right = PJ_IO_UNITS_WHATEVER;
P->destructor = horner_freeup;

/* Polynomial degree specified? */
Expand Down

0 comments on commit b65b88a

Please sign in to comment.