@loaders.gl/shapefile
Version:
Loader for the Shapefile Format
16 lines (13 loc) • 365 B
text/typescript
// loaders.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
import type {Format} from '@loaders.gl/loader-utils';
/** Information about the DBF format */
export const DBFFormat = {
name: 'DBF',
id: 'dbf',
module: 'shapefile',
category: 'table',
extensions: ['dbf'],
mimeTypes: ['application/x-dbf']
} as const satisfies Format;