diff options
| author | Kristian Evers <kristianevers@gmail.com> | 2019-01-29 16:57:57 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-01-29 16:57:57 +0100 |
| commit | 824b278558ddd9e8df3818e1a5ee3e780cb7c81e (patch) | |
| tree | e6782be095f2e2ae1c1c426494b31e1872daf327 /test/unit | |
| parent | 62799e10a3aa51e61e428e87f4aec10f65c737cb (diff) | |
| parent | c1203ecf517bb43dc84eb9e570d0db841642f05d (diff) | |
| download | PROJ-824b278558ddd9e8df3818e1a5ee3e780cb7c81e.tar.gz PROJ-824b278558ddd9e8df3818e1a5ee3e780cb7c81e.zip | |
Merge pull request #1240 from keyos89/patch-1
Fix wrong parameter in ITRF2000 to ITRF2005 transfomations
Diffstat (limited to 'test/unit')
| -rw-r--r-- | test/unit/test_io.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/test_io.cpp b/test/unit/test_io.cpp index a4f60416..b27fece7 100644 --- a/test/unit/test_io.cpp +++ b/test/unit/test_io.cpp @@ -8679,7 +8679,7 @@ TEST(io, projparse_init) { ASSERT_TRUE(co != nullptr); EXPECT_EQ(co->exportToPROJString(PROJStringFormatter::create().get()), "+proj=helmert +x=-0.0001 +y=0.0008 +z=0.0058 +s=-0.0004 " - "+dx=0.0002 +dy=-0.0001 +dz=0.0018 +ds=-0.000008 " + "+dx=0.0002 +dy=-0.0001 +dz=0.0018 +ds=-0.00008 " "+t_epoch=2000.0 +convention=position_vector"); } |
