Kyle Barron

Results 717 issues of Kyle Barron

Putting up this PR for discussion. I was playing around a bit with adding optional parameterization for types such as `LoaderWithParser`. I was able to get the top-level `parse` export...

Improved shapefile typing - Improved Batch typing - Improved `zip-batch-iterators`, taking inspiration from https://github.com/visgl/loaders.gl/pull/2073 - Coalesce all Shapefile types into `types.ts` - Rename `RowArrayTableBatch` to `ArrayRowTableBatch` and `RowObjectTableBatch` to `ObjectRowTableBatch`...

This is early and preliminary but I think a discussion is warranted. As I understand it, Parquet is the de-facto on-disk file format used with Arrow. I've been reading about...

I was trying to do a simple benchmark of the JS parquet library in `modules/parquet`. With [this example Parquet file](https://github.com/visgl/loaders.gl/files/8457835/1-partition-none.parquet.zip) (1 million rows, 1 row group, no compression) I got...

As I was browsing through the Parquet code recently, I noticed that we depend on `lzo` where the Node bindings are MIT licensed but the [underlying C library is GPL2](https://github.com/schroffl/node-lzo/blob/master/lib/minilzo209/COPYING)....

### General - [ ] Document GIS category - [ ] GeoJSONLoader is included as an experimental export. Documentation needs to be written before the 2.3.0 release. - [ ]...

Many file formats are well suited to a multi step process. First, read metadata about the resource, then use that metadata in further requests. Possible loaders (existing or potential) that...

It looks like there are a variety of good test files in the `@ngageoint/geopackage-js` repository: - https://github.com/ngageoint/geopackage-js/tree/master/test/fixtures

GeoJSON output should have CCW exterior polygon rings and CW interior polygon rings. Currently, no winding order normalization is done, so the output of the Shapefile loader has CW exterior...

The current documentation for the loaders.gl binary output format is [here](https://github.com/visgl/loaders.gl/blob/master/modules/gis/docs/api-reference/geojson-to-binary.md#outputs). The Polygon output format defines arrays of `polygonIndices` and `primitivePolygonIndices`, which tell where each internal ring begins and ends,...