node-gdal icon indicating copy to clipboard operation
node-gdal copied to clipboard

Node.js bindings for GDAL (Geospatial Data Abstraction Library)

Results 71 node-gdal issues
Sort by recently updated
recently updated
newest added

I'm trying to run the [`executeSQL`](http://naturalatlas.github.io/node-gdal/classes/gdal.Dataset.html#method-executeSQL) method using the sqlite dialect. I've tested a number of queries that each work using the default dialect but fail when I set the...

Related: https://github.com/nodejs/node/issues/21783 Info about how to fix it: https://github.com/nodejs/node/blob/master/doc/api/addons.md#context-aware-addons Example of a native module fixing it: https://github.com/schroffl/node-lzo/pull/11/files Let me know if you want me to take a swing at it...

code section: ``` const srs = gdal.SpatialReference.fromEPSG(4326); layer.features.forEach( item => { try{ const geometry = item.getGeometry(); geometry.transformTo(srs); const feature = model({ geometry: geometry.toJSON(), properties: item.fields.toJSON() }); features.push(feature); } catch (e)...

excuse me i want to ask about the Appropriate nodejs version for node-gdal i can not install . wi10 node 10.10.0 thank you best wishes

After some struggling I realized that node-gdal requires you to have **Microsoft Visual C++ 2013 Redistributable (x64)**, i.e. vcredist_x64.exe, installed if you're on a Windows computer. Haven't seen any documentation...

Are there any plans to include the RasterIO interface as well? (Correct me if I missed it!) I'm trying to merge two raster datasets (think merging two adjacent web Mercator...

I was reprojecting some points and noticed the output is off about 100 ft compared to gdaltransform. Tested using Node 8.11 and 10.9. ``` var gdal = require('gdal') var source...

We need to build our app on one machine and deploy on another, with --no-bin-links failing that is not possible. Without --no-bin-links it installs fine ``` > [email protected] install F:\proj\htrack\src\mapping-api\node_modules\gdal...

Could it be possible to support GPKG driver please.

When i open dxf file i can't read its geometry. I always have gdal.wkbUnknow (0).