From 4d8ed440e35d3b7f3603741b6e87997447c7cc59 Mon Sep 17 00:00:00 2001 From: Andreas Hocevar Date: Mon, 5 Feb 2024 18:42:54 +0100 Subject: [PATCH] Fix syntax error --- src/geotiffimage.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/geotiffimage.js b/src/geotiffimage.js index 36dd9fcd..aff618ca 100644 --- a/src/geotiffimage.js +++ b/src/geotiffimage.js @@ -873,7 +873,6 @@ class GeoTIFFImage { -Math.sqrt((modelTransformation[1] * modelTransformation[1]) + (modelTransformation[5] * modelTransformation[5])), modelTransformation[10]]; - } } if (referenceImage) { @@ -900,7 +899,7 @@ class GeoTIFFImage { * Returns the image bounding box as an array of 4 values: min-x, min-y, * max-x and max-y. When the image has no affine transformation, then an * exception is thrown. - * @param {boolean} [tilegrid=false] If true return extent for a tilegrid + * @param {boolean} [tilegrid=false] If true return extent for a tilegrid * without adjustment for ModelTransformation. * @returns {Array} The bounding box */