@ciag/sentinel-hub-wms
Version:
a API to create the sentinel ogs requests, and tools to apply on the data
21 lines (20 loc) • 652 B
TypeScript
import { RawGetFeatureRequestOptions } from "./GetFeaturesRequestOptions";
export declare class GetFeaturesRequest {
preset: RequestInfo;
parameters: any[];
request: string;
UUID: string;
timeStart: string;
timeEnd: string;
constructor(preset?: RequestInfo);
addUUID(uuid: string): void;
addParameter<T extends keyof RawGetFeatureRequestOptions>(name: T, value: RawGetFeatureRequestOptions[T]): void;
/**
* Requesting via proxyLink
*/
getProxyLink(proxy: RequestInfo): string;
/**
* Requesting directly from sentinel
*/
getDirectLink(uuid?: string): string;
}