@@ -248,6 +248,11 @@ describe('GeoTIFF', () => {
248
248
await performTiffTests ( tiff , 539 , 448 , 15 , Uint16Array ) ;
249
249
} ) ;
250
250
251
+ it ( 'should work on Zstandard compressed tiffs' , async ( ) => {
252
+ const tiff = await GeoTIFF . fromSource ( createSource ( 'zstd.tiff' ) ) ;
253
+ await performTiffTests ( tiff , 539 , 448 , 15 , Uint16Array ) ;
254
+ } ) ;
255
+
251
256
it ( 'should work on Float32 and LERC compressed tiffs' , async ( ) => {
252
257
const tiff = await GeoTIFF . fromSource ( createSource ( 'float32lerc.tiff' ) ) ;
253
258
await performTiffTests ( tiff , 539 , 448 , 15 , Float32Array ) ;
@@ -268,6 +273,11 @@ describe('GeoTIFF', () => {
268
273
await performTiffTests ( tiff , 539 , 448 , 15 , Float32Array ) ;
269
274
} ) ;
270
275
276
+ it ( 'should work on Float32 and Zstandard compressed tiffs' , async ( ) => {
277
+ const tiff = await GeoTIFF . fromSource ( createSource ( 'float32zstd.tiff' ) ) ;
278
+ await performTiffTests ( tiff , 539 , 448 , 15 , Float32Array ) ;
279
+ } ) ;
280
+
271
281
it ( 'should work with worker pool' , async ( ) => {
272
282
const testPool = new Pool ( ) ;
273
283
const tiff = await GeoTIFF . fromSource ( createSource ( 'nasa_raster.tiff' ) ) ;
0 commit comments