Interface HonuaStacItemResponse

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

interface HonuaStacItemResponse {
    assets?: Record<string, {
        href: string;
        roles?: readonly string[];
        title?: string;
        type?: string;
    }>;
    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, {
    href: string;
    roles?: readonly string[];
    title?: string;
    type?: string;
}>
collection?: string
geometry: null | GeoJsonGeometry
id?: string | number
links?: HonuaOgcLink[]
properties: null | Record<string, unknown>
stac_extensions?: readonly string[]
stac_version?: string
type