Interface for the index structure used for tiles within a block.

interface TileIndex {
    lengths: Float64Array;
    offsets: Float64Array;
}

Properties

Properties

lengths: Float64Array

Array specifying the byte lengths of the tiles. A length of 0 means the tile is not stored.

offsets: Float64Array

Array indicating the start byte positions of tiles within the block.