Super Light and Fast Method for Checking if a TIFF is a Cloud Optimized GeoTIFF
- It uses id-tif to check if the file is a TIFF.
- If it is a TIFF, it uses is-geotiff to check if the file is a GeoTIFF.
- If it is a GeoTIFF, it uses has-bytes to check if the bytes associated with the following tags are present: TileWidth, TileLength, TileOffsets, and TileByteCounts.
npm install is-cog
const fs = require("fs");
const isCOG = require("is-cog");
const buffer = fs.readFileSync("./landsat_scene.tiff");
const { is_cog, is_geotiff, is_tiff } = isCOG({
data: buffer,
debug: false // set debug to true for increased logging
});
// is_cog is true
// is_geotiff is true
// is_tiff is true