From ce87a189d716c6b1e4e256c9b81bb9469acfecaf Mon Sep 17 00:00:00 2001 From: andreiveselov <35749135+andreiveselov@users.noreply.github.com> Date: Tue, 29 Aug 2023 08:57:14 -0400 Subject: [PATCH] Update GpsCoords.cs Fixed scale matrix to have last element to be 1 --- Obj2Tiles/Stages/Model/GpsCoords.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Obj2Tiles/Stages/Model/GpsCoords.cs b/Obj2Tiles/Stages/Model/GpsCoords.cs index e8f2b73..3713565 100644 --- a/Obj2Tiles/Stages/Model/GpsCoords.cs +++ b/Obj2Tiles/Stages/Model/GpsCoords.cs @@ -72,7 +72,7 @@ public double[] ToEcefTransform() s, 0, 0, 0, 0, s, 0, 0, 0, 0, s, 0, - 0, 0, 0, s + 0, 0, 0, 1 }; var mult = MultiplyMatrix(res, rot);