UNPKG

@loaders.gl/wkt

Version:

Loader and Writer for the WKT (Well Known Text) Format

27 lines 1.16 kB
import type { WriterOptions } from '@loaders.gl/loader-utils'; import type { EncodeWKTCRSOptions } from "./lib/encode-wkt-crs.js"; export type WKTCRSWriterOptions = WriterOptions & { 'wkt-crs'?: EncodeWKTCRSOptions; }; /** * Well-Known text CRS loader * @see OGC Standard: https://www.ogc.org/standards/wkt-crs * @see Wikipedia Page: https://en.wikipedia.org/wiki/Well-known_text_representation_of_coordinate_reference_systems */ export declare const WKTCRSWriter: { readonly name: "WKT CRS (Well-Known Text Coordinate Reference System)"; readonly id: "wkt-crs"; readonly module: "wkt-crs"; readonly version: any; readonly worker: true; readonly extensions: []; readonly mimeTypes: ["text/plain"]; readonly text: true; readonly options: { readonly 'wkt-crs': {}; }; readonly encode: (wktcrs: any, options: WKTCRSWriterOptions | undefined) => Promise<Uint8Array>; readonly encodeSync: (wktcrs: any, options: WKTCRSWriterOptions | undefined) => Uint8Array; readonly encodeTextSync: (wktcrs: any, options: WKTCRSWriterOptions | undefined) => string; }; //# sourceMappingURL=wkt-crs-writer.d.ts.map