UNPKG

s2-tools

Version:

A collection of geospatial tools primarily designed for WGS84, Web Mercator, and S2.

11 lines 380 B
/** WKT value or array of values */ export type WKTValue = string | WKTValue[]; /** WKT object is a collection of WKT values or even nested WKT objects */ export type WKTObject = WKTValue[]; /** * Parses a WKT object * @param wktStr - WKT string * @returns - WKT object */ export declare function parseWKTObject(wktStr: string): WKTObject; //# sourceMappingURL=object.d.ts.map