Skip to content

Releases: naturalatlas/node-gdal

0.3.0

09 Nov 06:46
Compare
Choose a tag to compare
  • 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:

  • SpatialReference.toProj4() strings are now trimmed (#64)
  • Across the entire API: toJSON() now always returns a serialized string, and toObject() always returns an object. In the past there was some inconsistency (#71)

0.2.0

21 Aug 22:07
Compare
Choose a tag to compare
  • 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

01 Aug 18:15
Compare
Choose a tag to compare
  • Bugfix: projections returned could be incorrect due to cache.

0.1.1

01 Aug 18:17
Compare
Choose a tag to compare