Handle NaN nodata
This commit is contained in:
21
test/rendering/cases/cog-f32-nodata/main.js
Normal file
21
test/rendering/cases/cog-f32-nodata/main.js
Normal file
@@ -0,0 +1,21 @@
|
||||
import GeoTIFF from '../../../../src/ol/source/GeoTIFF.js';
|
||||
import Map from '../../../../src/ol/Map.js';
|
||||
import TileLayer from '../../../../src/ol/layer/WebGLTile.js';
|
||||
|
||||
const source = new GeoTIFF({
|
||||
sources: [{url: '/data/raster/elevation-f32.tif'}],
|
||||
});
|
||||
|
||||
new Map({
|
||||
layers: [
|
||||
new TileLayer({
|
||||
source: source,
|
||||
}),
|
||||
],
|
||||
target: 'map',
|
||||
view: source.getView(),
|
||||
});
|
||||
|
||||
render({
|
||||
message: 'normalize i16 data with nan nodata based on GDAL stats',
|
||||
});
|
||||
Reference in New Issue
Block a user