Releases: naturalatlas/node-gdal
Releases · naturalatlas/node-gdal
0.3.0
- Supports Node 0.11+ (via nan)
- Updated bundled GDAL to 1.11.1
- Added preliminary support for GDAL 2.x
- Added Algorithms (documentation):
reprojectImage()
fillNodata()
contourGenerate()
polygonize()
sieveFilter()
checksumImage()
suggestedWarpOutput()
- Added support for transforming geometry to pixel coordinates:
new gdal.CoordinateTransformation(s_srs, target_dataset)
- Can now pass creation options as objects or arrays of strings
- Bugfix: Layer creation options segfault fixed
Breaking Changes:
0.2.0
- Introduced support for reading write rasterband pixels (#56)
band.pixels.read(x, y, width, height, [buffer], [options])
band.pixels.write(x, y, width, height, data, [options])
For more information and other available methods, see the RasterBand Pixel API documentation. - Added support for generating dataset overviews (#63)
dataset.buildOverviews(resampling, overviews, [bands])
- Added support for more vector formats:
gpx aeronavfaa bna dxf csv edigeo geoconcept georss gml gmt gpsbabel gtm htf idrisi dgn openair openfilegdb pcidsk pds pgdump rec s57 sdts segukooa segy sua svg sxf ntf tiger xplane wasp
(#60) - Added
envelope.toPolygon()
method. - Stability improvements.
0.1.2
- Bugfix: projections returned could be incorrect due to cache.
0.1.1
- Fixed out-of-date bundled node-pre-gyp dependency (#57).