aboutsummaryrefslogtreecommitdiff
path: root/src/proj.c
diff options
context:
space:
mode:
authorThomas Knudsen <thokn@sdfe.dk>2017-10-06 22:01:23 +0200
committerThomas Knudsen <thokn@sdfe.dk>2017-10-06 22:01:23 +0200
commit03123018ea7090b992430ce8dd4fa6980f04d0d3 (patch)
tree5716a9475bca96c7d59870eb1673ed2aade87ab3 /src/proj.c
parent8045ecfaaf8943663132ce1eb8673fff636d2ce5 (diff)
downloadPROJ-03123018ea7090b992430ce8dd4fa6980f04d0d3.tar.gz
PROJ-03123018ea7090b992430ce8dd4fa6980f04d0d3.zip
Remove superfluous checks for PJ.left being PJ_IO_UNITS_CLASSIC
Diffstat (limited to 'src/proj.c')
-rw-r--r--src/proj.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proj.c b/src/proj.c
index aa0f07c0..049593c9 100644
--- a/src/proj.c
+++ b/src/proj.c
@@ -145,7 +145,7 @@ static void process(FILE *fid) {
}
} else { /* x-y or decimal degree ascii output, scale if warranted by output units */
if (inverse) {
- if (Proj->left == PJ_IO_UNITS_RADIANS || Proj->left == PJ_IO_UNITS_CLASSIC) {
+ if (Proj->left == PJ_IO_UNITS_RADIANS) {
data.v *= RAD_TO_DEG;
data.u *= RAD_TO_DEG;
}