UNPKG

@dlr-eoc/services-ogc

Version:

This module bundles our clients for OGC standards. E.g. parse OWS Context JSON, WMS, WMTS or WPS.

17 lines (16 loc) 1.03 kB
import { WpsClient as WCBasic, WpsVersion, Cache } from '@dlr-eoc/utils-ogc'; import { HttpClient } from '@angular/common/http'; import * as i0 from "@angular/core"; /** * This file exports a wrapper around @dlr-eoc/utils-ogc/Wps for backwards compatibility. * While the WPS functionality has been moved to utils-ogc, we still maintain this wrapper * so that older clients don't need to change their imports. */ export { Cache, FakeCache } from '@dlr-eoc/utils-ogc'; export { WpsDataDescription, WpsInputDescription, WpsOutputDescription, WpsData, WpsInput, WpsResult, WpsBboxDescription, WpsBboxValue, WpsBboxData, WpsVersion, WpsDataFormat, WpsState, WpsCapability, WpsProcessDescription, WpsServerDescription, WpsMarshaller } from '@dlr-eoc/utils-ogc'; export declare class WpsClient extends WCBasic { private webClient; constructor(version: WpsVersion, webClient: HttpClient, cache?: Cache); static ɵfac: i0.ɵɵFactoryDeclaration<WpsClient, never>; static ɵprov: i0.ɵɵInjectableDeclaration<WpsClient>; }