@ciag/sentinel-hub-wms
Version:
a API to create the sentinel ogs requests, and tools to apply on the data
13 lines (12 loc) • 475 B
TypeScript
import { Feature, Polygon } from "geojson";
export declare class ColorFinder {
img: HTMLImageElement;
width: number;
height: number;
canvas: HTMLCanvasElement;
canvas2: HTMLCanvasElement;
canvasContext: CanvasRenderingContext2D;
constructor(img: HTMLImageElement);
map(x: number, in_min: number, in_max: number, out_min: number, out_max: number): number;
getfindColor(geoJson: Feature<Polygon>): Promise<Feature<Polygon>[]>;
}