@loaders.gl/arrow 4.1.0-alpha.2 → 4.1.0-alpha.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (82) hide show
  1. package/dist/arrow-loader.d.ts.map +1 -1
  2. package/dist/arrow-loader.js +1 -1
  3. package/dist/arrow-loader.js.map +1 -1
  4. package/dist/arrow-worker.js +1 -1
  5. package/dist/arrow-writer.js +1 -1
  6. package/dist/arrow-writer.js.map +1 -1
  7. package/dist/dist.dev.js +41 -24
  8. package/dist/geoarrow/convert-geoarrow-to-binary-geometry.d.ts.map +1 -1
  9. package/dist/geoarrow/convert-geoarrow-to-binary-geometry.js.map +1 -1
  10. package/dist/geoarrow/convert-geoarrow-to-geojson-geometry.d.ts.map +1 -1
  11. package/dist/geoarrow/convert-geoarrow-to-geojson-geometry.js.map +1 -1
  12. package/dist/geoarrow/get-arrow-bounds.d.ts.map +1 -1
  13. package/dist/geoarrow/get-arrow-bounds.js.map +1 -1
  14. package/dist/geoarrow-loader.d.ts.map +1 -1
  15. package/dist/geoarrow-loader.js.map +1 -1
  16. package/dist/geoarrow-writer.js +1 -1
  17. package/dist/geoarrow-writer.js.map +1 -1
  18. package/dist/index.d.ts.map +1 -1
  19. package/dist/index.js.map +1 -1
  20. package/dist/lib/arrow-table-batch.d.ts.map +1 -1
  21. package/dist/lib/arrow-table-batch.js.map +1 -1
  22. package/dist/lib/arrow-table.d.ts.map +1 -1
  23. package/dist/lib/arrow-table.js.map +1 -1
  24. package/dist/lib/encode-arrow.d.ts.map +1 -1
  25. package/dist/lib/encode-arrow.js.map +1 -1
  26. package/dist/lib/encode-geoarrow.d.ts.map +1 -1
  27. package/dist/lib/encode-geoarrow.js.map +1 -1
  28. package/dist/parsers/parse-arrow-in-batches.d.ts.map +1 -1
  29. package/dist/parsers/parse-arrow-in-batches.js.map +1 -1
  30. package/dist/parsers/parse-arrow-sync.d.ts.map +1 -1
  31. package/dist/parsers/parse-arrow-sync.js.map +1 -1
  32. package/dist/parsers/parse-geoarrow-in-batches.d.ts.map +1 -1
  33. package/dist/parsers/parse-geoarrow-in-batches.js.map +1 -1
  34. package/dist/parsers/parse-geoarrow-sync.d.ts.map +1 -1
  35. package/dist/parsers/parse-geoarrow-sync.js.map +1 -1
  36. package/dist/schema/arrow-type-utils.d.ts.map +1 -1
  37. package/dist/schema/arrow-type-utils.js.map +1 -1
  38. package/dist/schema/convert-arrow-schema.d.ts.map +1 -1
  39. package/dist/schema/convert-arrow-schema.js.map +1 -1
  40. package/dist/tables/convert-arrow-to-columnar-table.d.ts.map +1 -1
  41. package/dist/tables/convert-arrow-to-columnar-table.js.map +1 -1
  42. package/dist/tables/convert-arrow-to-geojson-table.d.ts.map +1 -1
  43. package/dist/tables/convert-arrow-to-geojson-table.js.map +1 -1
  44. package/dist/tables/convert-columnar-to-row-table.d.ts.map +1 -1
  45. package/dist/tables/convert-columnar-to-row-table.js.map +1 -1
  46. package/dist/tables/convert-table-to-arrow.d.ts.map +1 -1
  47. package/dist/tables/convert-table-to-arrow.js.map +1 -1
  48. package/dist/triangulate-on-worker.d.ts.map +1 -1
  49. package/dist/triangulate-on-worker.js +1 -1
  50. package/dist/triangulate-on-worker.js.map +1 -1
  51. package/dist/types.d.ts.map +1 -1
  52. package/dist/types.js.map +1 -1
  53. package/dist/workers/arrow-worker.js.map +1 -1
  54. package/dist/workers/triangulation-worker-node.d.ts.map +1 -1
  55. package/dist/workers/triangulation-worker-node.js.map +1 -1
  56. package/dist/workers/triangulation-worker.js.map +1 -1
  57. package/package.json +6 -6
  58. package/src/arrow-loader.ts +2 -1
  59. package/src/geoarrow/convert-geoarrow-to-binary-geometry.ts +2 -1
  60. package/src/geoarrow/convert-geoarrow-to-geojson-geometry.ts +2 -1
  61. package/src/geoarrow/get-arrow-bounds.ts +2 -1
  62. package/src/geoarrow-loader.ts +2 -1
  63. package/src/index.ts +2 -1
  64. package/src/lib/arrow-table-batch.ts +2 -1
  65. package/src/lib/arrow-table.ts +2 -1
  66. package/src/lib/encode-arrow.ts +2 -1
  67. package/src/lib/encode-geoarrow.ts +2 -1
  68. package/src/parsers/parse-arrow-in-batches.ts +2 -1
  69. package/src/parsers/parse-arrow-sync.ts +2 -1
  70. package/src/parsers/parse-geoarrow-in-batches.ts +2 -1
  71. package/src/parsers/parse-geoarrow-sync.ts +2 -1
  72. package/src/schema/arrow-type-utils.ts +2 -1
  73. package/src/schema/convert-arrow-schema.ts +2 -1
  74. package/src/tables/convert-arrow-to-columnar-table.ts +2 -1
  75. package/src/tables/convert-arrow-to-geojson-table.ts +2 -1
  76. package/src/tables/convert-columnar-to-row-table.ts +2 -1
  77. package/src/tables/convert-table-to-arrow.ts +2 -1
  78. package/src/triangulate-on-worker.ts +2 -1
  79. package/src/types.ts +2 -1
  80. package/src/workers/arrow-worker.ts +2 -1
  81. package/src/workers/triangulation-worker-node.ts +2 -1
  82. package/src/workers/triangulation-worker.ts +2 -1
package/src/index.ts CHANGED
@@ -1,4 +1,5 @@
1
- // loaders.gl, MIT license
1
+ // loaders.gl
2
+ // SPDX-License-Identifier: MIT
2
3
  // Copyright (c) vis.gl contributors
3
4
 
4
5
  import type {ArrowLoaderOptions} from './arrow-loader';
@@ -1,4 +1,5 @@
1
- // loaders.gl, MIT license
1
+ // loaders.gl
2
+ // SPDX-License-Identifier: MIT
2
3
  // Copyright (c) vis.gl contributors
3
4
 
4
5
  import {ColumnarTableBatchAggregator} from '@loaders.gl/schema';
@@ -1,4 +1,5 @@
1
- // loaders.gl, MIT license
1
+ // loaders.gl
2
+ // SPDX-License-Identifier: MIT
2
3
  // Copyright (c) vis.gl contributors
3
4
 
4
5
  import type {Batch, Schema} from '@loaders.gl/schema';
@@ -1,4 +1,5 @@
1
- // loaders.gl, MIT license
1
+ // loaders.gl
2
+ // SPDX-License-Identifier: MIT
2
3
  // Copyright (c) vis.gl contributors
3
4
 
4
5
  import * as arrow from 'apache-arrow';
@@ -1,4 +1,5 @@
1
- // loaders.gl, MIT license
1
+ // loaders.gl
2
+ // SPDX-License-Identifier: MIT
2
3
  // Copyright (c) vis.gl contributors
3
4
 
4
5
  import * as arrow from 'apache-arrow';
@@ -1,4 +1,5 @@
1
- // loaders.gl, MIT license
1
+ // loaders.gl
2
+ // SPDX-License-Identifier: MIT
2
3
  // Copyright (c) vis.gl contributors
3
4
 
4
5
  import type {ArrowTableBatch} from '../lib/arrow-table';
@@ -1,4 +1,5 @@
1
- // loaders.gl, MIT license
1
+ // loaders.gl
2
+ // SPDX-License-Identifier: MIT
2
3
  // Copyright (c) vis.gl contributors
3
4
 
4
5
  import type {ArrayRowTable, ColumnarTable, ObjectRowTable} from '@loaders.gl/schema';
@@ -1,4 +1,5 @@
1
- // loaders.gl, MIT license
1
+ // loaders.gl
2
+ // SPDX-License-Identifier: MIT
2
3
  // Copyright (c) vis.gl contributors
3
4
 
4
5
  import type {GeoJSONTableBatch} from '@loaders.gl/schema';
@@ -1,4 +1,5 @@
1
- // loaders.gl, MIT license
1
+ // loaders.gl
2
+ // SPDX-License-Identifier: MIT
2
3
  // Copyright (c) vis.gl contributors
3
4
 
4
5
  import type {GeoJSONTable} from '@loaders.gl/schema';
@@ -1,4 +1,5 @@
1
- // loaders.gl, MIT license
1
+ // loaders.gl
2
+ // SPDX-License-Identifier: MIT
2
3
  // Copyright (c) vis.gl contributors
3
4
 
4
5
  import type {TypedArray} from '@loaders.gl/schema';
@@ -1,4 +1,5 @@
1
- // loaders.gl, MIT license
1
+ // loaders.gl
2
+ // SPDX-License-Identifier: MIT
2
3
  // Copyright (c) vis.gl contributors
3
4
 
4
5
  import type {DataType, Field, Schema, SchemaMetadata} from '@loaders.gl/schema';
@@ -1,4 +1,5 @@
1
- // loaders.gl, MIT license
1
+ // loaders.gl
2
+ // SPDX-License-Identifier: MIT
2
3
  // Copyright (c) vis.gl contributors
3
4
 
4
5
  import type {ColumnarTable} from '@loaders.gl/schema';
@@ -1,4 +1,5 @@
1
- // loaders.gl, MIT license
1
+ // loaders.gl
2
+ // SPDX-License-Identifier: MIT
2
3
  // Copyright (c) vis.gl contributors
3
4
 
4
5
  import type {Feature, GeoJSONTable} from '@loaders.gl/schema';
@@ -1,4 +1,5 @@
1
- // loaders.gl, MIT license
1
+ // loaders.gl
2
+ // SPDX-License-Identifier: MIT
2
3
  // Copyright (c) vis.gl contributors
3
4
 
4
5
  import type {ColumnarTable, ObjectRowTable} from '@loaders.gl/schema';
@@ -1,4 +1,5 @@
1
- // loaders.gl, MIT license
1
+ // loaders.gl
2
+ // SPDX-License-Identifier: MIT
2
3
  // Copyright (c) vis.gl contributors
3
4
 
4
5
  // import {
@@ -1,4 +1,5 @@
1
- // loaders.gl, MIT license
1
+ // loaders.gl
2
+ // SPDX-License-Identifier: MIT
2
3
  // Copyright (c) vis.gl contributors
3
4
 
4
5
  import * as arrow from 'apache-arrow';
package/src/types.ts CHANGED
@@ -1,4 +1,5 @@
1
- // loaders.gl, MIT license
1
+ // loaders.gl
2
+ // SPDX-License-Identifier: MIT
2
3
  // Copyright (c) vis.gl contributors
3
4
 
4
5
  type TypedIntArray = Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array;
@@ -1,4 +1,5 @@
1
- // loaders.gl, MIT license
1
+ // loaders.gl
2
+ // SPDX-License-Identifier: MIT
2
3
  // Copyright (c) vis.gl contributors
3
4
 
4
5
  import {createLoaderWorker} from '@loaders.gl/loader-utils';
@@ -1,4 +1,5 @@
1
- // loaders.gl, MIT license
1
+ // loaders.gl
2
+ // SPDX-License-Identifier: MIT
2
3
  // Copyright (c) vis.gl contributors
3
4
 
4
5
  import './triangulation-worker';
@@ -1,4 +1,5 @@
1
- // loaders.gl, MIT license
1
+ // loaders.gl
2
+ // SPDX-License-Identifier: MIT
2
3
  // Copyright (c) vis.gl contributors
3
4
 
4
5
  import * as arrow from 'apache-arrow';