@gooin/fit2spatial
Version:
Convert Garmin FIT files to GeoJSON, SHP, KML, GPX
5 lines (4 loc) • 334 B
TypeScript
import { FeatureCollection } from 'geojson';
import { EventInterface } from '@sports-alliance/sports-lib/lib/events/event.interface';
export declare const convertGeoJSONToSHP: (geoJSON: FeatureCollection, output: string) => Promise<void>;
export declare const eventToSHP: (event: EventInterface, output: string) => Promise<void>;