ExcelLoader
(Non-streaming) table loader for Excel files.
| Loader | Characteristic |
|---|---|
| File Extension | .xls, .xlsb, .xlsx |
| File Type | Binary |
| File Format | Excel |
| Data Format | Classic Table |
| Supported APIs | load, parse |
Usage
import {ExcelLoader} from '@loaders.gl/excel';
import {load} from '@loaders.gl/core';
const data = await load(url, ExcelLoader, {excel: options});
Options
| Option | From | Type | Default | Description |
| ------------- | ------------------------------------------------------------------------------------- | ------- | ------- | ----------- | ----------------------------------------------------- |
| excel.sheet | [] |
string | null | null | Which worksheet to load. By default loads first sheet |
Attribution
The ExcelLoader is a wrapper around SheetJS which is Apache 2.0 licensed.