@loaders.gl/wkt
Version:
Loader and Writer for the WKT (Well Known Text) Format
15 lines • 335 B
TypeScript
export type ParseWKTCRSOptions = {
sort?: boolean;
keywords?: string[];
raw?: boolean;
debug?: boolean;
};
export type WKTCRS = any;
/**
*
* @param wkt
* @param options
* @returns
*/
export declare function parseWKTCRS(wkt: string, options?: ParseWKTCRSOptions): WKTCRS;
//# sourceMappingURL=parse-wkt-crs.d.ts.map