UNPKG

s2-tools

Version:

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

11 lines 472 B
import type { Feature, LineStringGeometry, MValue, Properties } from '../../../geometry'; /** The properties for each shape */ export interface GTFSShapeProperties extends Properties { id: string; } /** * @param input - the input string to parse from * @returns - an array of Agencies */ export declare function parseGTFSShapes(input: string): Record<string, Feature<undefined, MValue, GTFSShapeProperties, LineStringGeometry>>; //# sourceMappingURL=shapes.d.ts.map