From f2b2992cdd2b2a56a9f3b23c05739b2b6b3a4012 Mon Sep 17 00:00:00 2001 From: Matthias Mohr Date: Thu, 10 Nov 2022 12:32:40 +0100 Subject: [PATCH] Fix resolution detection for ModelTransformation --- src/geotiffimage.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/geotiffimage.js b/src/geotiffimage.js index b939f627..233afc3d 100644 --- a/src/geotiffimage.js +++ b/src/geotiffimage.js @@ -857,7 +857,7 @@ class GeoTIFFImage { if (modelTransformation) { return [ modelTransformation[0], - modelTransformation[5], + -modelTransformation[5], modelTransformation[10], ]; }