diff options
| author | Thomas Knudsen <busstoptaktik@users.noreply.github.com> | 2018-01-08 03:41:45 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-01-08 03:41:45 +0100 |
| commit | 07bb446ec474cf62094070a8ea848b37c911a075 (patch) | |
| tree | f3212861bb79716af0d4d7008e3b3e44e40f2cd3 /src/PJ_deformation.c | |
| parent | 4809a281abca09085cba6494a0da247c03f0a487 (diff) | |
| download | PROJ-07bb446ec474cf62094070a8ea848b37c911a075.tar.gz PROJ-07bb446ec474cf62094070a8ea848b37c911a075.zip | |
Discern between 2D projected and 3D cartesian linear units (#732)
Diffstat (limited to 'src/PJ_deformation.c')
| -rw-r--r-- | src/PJ_deformation.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/PJ_deformation.c b/src/PJ_deformation.c index d227e49f..797af006 100644 --- a/src/PJ_deformation.c +++ b/src/PJ_deformation.c @@ -306,8 +306,8 @@ PJ *TRANSFORMATION(deformation,1) { P->fwd = 0; P->inv = 0; - P->left = PJ_IO_UNITS_METERS; - P->right = PJ_IO_UNITS_METERS; + P->left = PJ_IO_UNITS_CARTESIAN; + P->right = PJ_IO_UNITS_CARTESIAN; P->destructor = destructor; return P; |
