UNPKG

@ciag/sentinel-hub-wms

Version:

a API to create the sentinel ogs requests, and tools to apply on the data

32 lines (31 loc) 575 B
export interface GetFeatureReturn { type: string; features: Feature[]; } interface Feature { type: string; geometry: Geometry; properties: Properties2; } interface Properties2 { id: string; date: string; time: string; path: string; crs: string; mbr: string; cloudCoverPercentage: number; } interface Geometry { type: string; crs: Crs; coordinates: number[][][][]; } interface Crs { type: string; properties: Properties; } interface Properties { name: string; } export {};