gis-tools-ts
Version:
A collection of geospatial tools primarily designed for WGS84, Web Mercator, and S2.
11 lines • 519 B
TypeScript
import type { MValue, Properties, VectorFeature, VectorLineStringGeometry } from '../../../geometry/index.js';
/** 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, VectorFeature<Record<string, unknown>, MValue, GTFSShapeProperties, VectorLineStringGeometry>>;
//# sourceMappingURL=shapes.d.ts.map