Handle uneven LIDAR tiles

This commit is contained in:
alex
2017-02-07 22:11:05 +00:00
parent 7f26a4e018
commit 22ec06ddb1
3 changed files with 5 additions and 6 deletions

View File

@@ -260,8 +260,8 @@ int loadLIDAR(char *filenames)
IPPD = height;
}
// add fudge as reprojected tiles sometimes vary by a pixel or ten
IPPD+=10;
ARRAYSIZE = (MAXPAGES * IPPD) + 10;
IPPD+=50;
ARRAYSIZE = (MAXPAGES * IPPD) + 50;
do_allocs();
dem_alloced = 1;
}