UNPKG

@loaders.gl/shapefile

Version:

Loader for the Shapefile Format

18 lines (13 loc) 700 B
// loaders.gl // SPDX-License-Identifier: MIT // Copyright (c) vis.gl contributors export type {ShapefileLoaderOptions} from './shapefile-loader'; export {ShapefileLoader} from './shapefile-loader'; export type {DBFLoaderOptions} from './dbf-loader'; export {DBFLoader, DBFWorkerLoader} from './dbf-loader'; export type {SHPLoaderOptions} from './shp-loader'; export {SHPLoader, SHPWorkerLoader} from './shp-loader'; // EXPERIMENTAL export {BinaryReader as _BinaryReader} from './lib/streaming/binary-reader'; export {BinaryChunkReader as _BinaryChunkReader} from './lib/streaming/binary-chunk-reader'; export {zipBatchIterators as _zipBatchIterators} from './lib/streaming/zip-batch-iterators';