@loaders.gl/wkt
Version:
Loader and Writer for the WKT (Well Known Text) Format
29 lines • 1.17 kB
TypeScript
import type { LoaderOptions } from '@loaders.gl/loader-utils';
import type { ParseWKTCRSOptions, WKTCRS } from "./lib/parse-wkt-crs.js";
export type WKTCRSLoaderOptions = LoaderOptions & {
'wkt-crs'?: ParseWKTCRSOptions;
};
/**
* 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 WKTCRSLoader: {
readonly dataType: WKTCRS;
readonly batchType: never;
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 category: "json";
readonly text: true;
readonly options: {
readonly 'wkt-crs': {};
};
readonly parse: (arrayBuffer: ArrayBuffer, options: WKTCRSLoaderOptions | undefined) => Promise<any>;
readonly parseTextSync: (string: string, options: WKTCRSLoaderOptions | undefined) => any;
};
//# sourceMappingURL=wkt-crs-loader.d.ts.map