UNPKG

@gooin/fit2spatial

Version:

Convert Garmin FIT files to GeoJSON, SHP, KML, GPX

5 lines (4 loc) 342 B
import { EventInterface } from '@sports-alliance/sports-lib/lib/events/event.interface'; import { FeatureCollection, LineString } from 'geojson'; export declare const eventToGeoJSON: (event: EventInterface, output: string) => void; export declare const exportToGeoJSONLineString: (event: EventInterface) => FeatureCollection<LineString>;