Files
openlayers/test/rendering/cases/cog-f32-nodata-explicit-nan/main.js
2022-05-12 11:31:08 -06:00

22 lines
477 B
JavaScript

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', nodata: NaN}],
});
new Map({
layers: [
new TileLayer({
source: source,
}),
],
target: 'map',
view: source.getView(),
});
render({
message: 'normalize i16 data with nan nodata based on GDAL stats',
});