@loaders.gl/kml
Version:
Framework-independent loader for the KML format
91 lines (80 loc) • 2.47 kB
text/typescript
// loaders.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
import type {LoaderWithParser, LoaderOptions} from '@loaders.gl/loader-utils';
import {geojsonToBinary} from '@loaders.gl/gis';
import type {
GeoJSONTable,
FeatureCollection,
ObjectRowTable,
BinaryFeatureCollection
} from '@loaders.gl/schema';
import {tcx} from '@tmcw/togeojson';
import {DOMParser} from '@xmldom/xmldom';
// __VERSION__ is injected by babel-plugin-version-inline
// @ts-ignore TS2304: Cannot find name '__VERSION__'.
const VERSION = typeof __VERSION__ !== 'undefined' ? __VERSION__ : 'latest';
export type TCXLoaderOptions = LoaderOptions & {
tcx?: {
shape?: 'object-row-table' | 'geojson-table' | 'binary' | 'raw';
};
};
const TCX_HEADER = `\
<?xml version="1.0" encoding="UTF-8"?>
<TrainingCenterDatabase`;
/**
* Loader for TCX (Training Center XML) - Garmin GPS track format
*/
export const TCXLoader = {
dataType: null as unknown as ObjectRowTable | GeoJSONTable | BinaryFeatureCollection,
batchType: null as never,
name: 'TCX (Training Center XML)',
id: 'tcx',
module: 'kml',
version: VERSION,
extensions: ['tcx'],
mimeTypes: ['application/vnd.garmin.tcx+xml'],
text: true,
tests: [TCX_HEADER],
parse: async (arrayBuffer, options?: TCXLoaderOptions) =>
parseTextSync(new TextDecoder().decode(arrayBuffer), options),
parseTextSync,
options: {
tcx: {shape: 'geojson-table'},
gis: {}
}
} as const satisfies LoaderWithParser<
ObjectRowTable | GeoJSONTable | BinaryFeatureCollection,
never,
TCXLoaderOptions
>;
function parseTextSync(
text: string,
options?: TCXLoaderOptions
): ObjectRowTable | GeoJSONTable | BinaryFeatureCollection {
const doc = new DOMParser().parseFromString(text, 'text/xml');
const geojson: FeatureCollection = tcx(doc);
const tcxOptions = {...TCXLoader.options.tcx, ...options?.tcx};
switch (tcxOptions.shape) {
case 'object-row-table': {
const table: ObjectRowTable = {
shape: 'object-row-table',
data: geojson.features
};
return table;
}
case 'geojson-table': {
const table: GeoJSONTable = {
shape: 'geojson-table',
type: 'FeatureCollection',
schema: {metadata: {}, fields: []},
features: geojson.features
};
return table;
}
case 'binary':
return geojsonToBinary(geojson.features);
default:
throw new Error(tcxOptions.shape);
}
}