Interface HonuaStacAsset

Asset metadata carried by a STAC item.

The index signature intentionally preserves extension fields that the SDK does not yet interpret. Common Projection, Raster, File, and Checksum fields are named so applications can inspect provenance and compatibility without casting the entire asset to an untyped record.

interface HonuaStacAsset {
    checksum:multihash?: string;
    description?: string;
    file:checksum?: string;
    file:size?: number;
    href: string;
    proj:code?: string;
    proj:epsg?: number;
    raster:bands?: readonly HonuaStacRasterBand[];
    roles?: readonly string[];
    title?: string;
    type?: string;
}

Hierarchy

  • Record<string, unknown>
    • HonuaStacAsset

Properties

checksum:multihash?: string
description?: string
file:checksum?: string
file:size?: number
href: string
proj:code?: string
proj:epsg?: number
raster:bands?: readonly HonuaStacRasterBand[]
roles?: readonly string[]
title?: string
type?: string