Jérôme Desboeufs
Jérôme Desboeufs
#### Option 1: using [string_decoder](https://nodejs.org/dist/latest-v16.x/docs/api/string_decoder.html) in `PapaParse` Pros: straightforward bugfix Cons: will depend on a polyfill when using Node stream syntax in browser. Possibly a breaking change #### Option 2...
Probably related to #908
Related to #21 It will land soon!
Why not? :)
Many formats support streaming: GeoJSON, GML, CSV, GPX, KML… Currently `node-gdal` seems not to support stream in. You had to write your data to the filesystem, et read from it....
I have prototyped two methods: `firstAsync()` and `nextAsync()`. But I'm not able to write a benchmark test to evaluate the benefit of the async way. It seems these operations are...
Ok there is no benefit for local and small files on an idle system, but in production and for remote services and databases it's great! Step 1: bump to nan...
I'll look at this. Any idea for the JS API?
I can work on this, but I need help. We have to investigate for each method or accessor if there is IO or massive computation behind. Maybe we can start...
I don't know if GDAL2 is thread-safe, but we can ask @rouault. He also work in Paris area. Other alternatives to native async addons: https://github.com/nodejs/node/pull/2133 https://github.com/audreyt/node-webworker-threads For my developments with...