@developmentseed/stac-map
    Preparing search index...

    Interface StacItemCollection

    GeoJSON FeatureCollection of STAC Items. This is the shape returned by STAC API /search and /items endpoints, and is also how stac-map treats a stac-geoparquet file once loaded.

    interface StacItemCollection {
        description?: string;
        features: StacItem[];
        id?: string;
        links?: StacLink[];
        numberMatched?: number;
        title?: string;
        type: "FeatureCollection";
        [k: string]: unknown;
    }

    Indexable

    • [k: string]: unknown
    Index

    Properties

    description?: string
    features: StacItem[]
    id?: string
    links?: StacLink[]
    numberMatched?: number
    title?: string
    type: "FeatureCollection"