From 3648fbb65ff260ec31d496469f80df59e59af2ce Mon Sep 17 00:00:00 2001 From: chaensel-agco <79857317+chaensel-agco@users.noreply.github.com> Date: Fri, 15 Mar 2024 14:18:28 +0100 Subject: [PATCH] Update parseShp.js: fixed reading BoundingBox Ymax from the header (#205) --- lib/parseShp.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/parseShp.js b/lib/parseShp.js index 2ad30b9..3595eea 100644 --- a/lib/parseShp.js +++ b/lib/parseShp.js @@ -258,7 +258,7 @@ ParseShp.prototype.parseHeader = function () { view.readDoubleLE(9 << 2), view.readDoubleLE(11 << 2), view.readDoubleLE(13 << 2), - view.readDoubleLE(13 << 2) + view.readDoubleLE(15 << 2) ] }; };