Changes between Version 1 and Version 2 of Release/7.2.0-News


Ignore:
Timestamp:
May 26, 2016, 9:25:40 AM (8 years ago)
Author:
neteler
Comment:

updated

Legend:

Unmodified
Added
Removed
Modified
  • Release/7.2.0-News

    v1 v2  
    4242==== New modules ====
    4343
    44  * G7:g.search.modules - Search in GRASS modules using keywords
     44 * G72:d.frame - Manages display frames on the user's graphics monitor.
     45 * G72:r3.flow -
     46 * G72:r3.gradient -
     47 * G72:t.rast.algebra -
     48 * G72:t.rast3d.algebra -
     49 * G72:t.rast.contour -
     50 * G72:t.rast.to.vect -
     51 * G72:t.rast.what -
     52 * G72:t.vect.algebra -
     53 * G72:v.decimate -
     54 * G72:wxGUI.datacatalog -
    4555
    4656==== Major module changes ====
     
    6272==== Library changes ====
    6373 
    64  * libraster: support for new raster data compression methods:
     74 * libraster: support for new raster data compression methods: NONE, ZLIB, LZ4, BZIP2. Overview:
     75   * Raster map compression set by `export GRASS_COMPRESSOR=XXX`, with XXX be
     76     * `NONE` (uncompressed)
     77     * `RLE`  (generic Run-Length Encoding of single bytes)
     78     * `ZLIB` (DEFLATE, good speed and compression)
     79       * with zlib compression levels (`export GRASS_ZLIB_LEVEL=X`): -1..9 (-1 is default which is level 6)
     80       * Notes: ZLIB level = 0 tells ZLIB to copy the data as-is from source to destination. In case of CELL maps, the rasterlib itself will then still trim high zero bytes with trim_bytes() which can already reduce the data size considerably, but ZLIB will not compress the data.
     81     * `LZ4`  (fastest, low compression)
     82     * `BZIP2` (slowest, high compression)
     83   * NULL file compression: At time it must be explicitly turned on with `export GRASS_COMPRESS_NULLS=1`
    6584
    6685==== Map projection changes ====