UNPKG

@ciag/sentinel-hub-wms

Version:

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

31 lines (30 loc) 1.05 kB
import { Feature, Polygon } from "geojson"; export declare class FindStructure { uuid: string; shape: Feature<Polygon>; dateFromShape: Date; constructor(uuid: string, shape: Feature<Polygon>, dateFromShape: Date); getmonthAfter(): Promise<import("geojson").FeatureCollection<Polygon, { [name: string]: any; }>>; getYearAfter(): Promise<import("geojson").FeatureCollection<Polygon, { [name: string]: any; }>>; getYearBebore(): Promise<import("geojson").FeatureCollection<Polygon, { [name: string]: any; }>>; getSixMonthsBebore(): Promise<import("geojson").FeatureCollection<Polygon, { [name: string]: any; }>>; getTowYearAgo(): Promise<import("geojson").FeatureCollection<Polygon, { [name: string]: any; }>>; getInvalidPixels(): Promise<{ img: string; LatLng: [number[], number[]]; link: string; }>; private getDangerZoneByDate; private RawToImage; private paintInvalidInDangerZone; }