Interface HonuaStacItemCollectionResponse

Response from STAC /search.

interface HonuaStacItemCollectionResponse {
    context?: {
        limit?: number;
        matched?: number;
        returned?: number;
    };
    features: HonuaStacItemResponse[];
    links?: HonuaOgcLink[];
    numberMatched?: number;
    numberReturned?: number;
    type: "FeatureCollection";
}

Properties

context?: {
    limit?: number;
    matched?: number;
    returned?: number;
}
links?: HonuaOgcLink[]
numberMatched?: number
numberReturned?: number
type