Interface HonuaStacItemResponse

Single STAC item (a GeoJSON feature with STAC-specific extensions).

interface HonuaStacItemResponse {
    assets?: Record<string, HonuaStacAsset>;
    bbox?: readonly number[];
    collection?: string;
    geometry: null | GeoJsonGeometry;
    id?: string | number;
    links?: HonuaOgcLink[];
    properties: null | Record<string, unknown>;
    stac_extensions?: readonly string[];
    stac_version?: string;
    type: "Feature";
}

Hierarchy (view full)

Properties

assets?: Record<string, HonuaStacAsset>
bbox?: readonly number[]
collection?: string
geometry: null | GeoJsonGeometry
id?: string | number
links?: HonuaOgcLink[]
properties: null | Record<string, unknown>
stac_extensions?: readonly string[]
stac_version?: string
type