Skip to content

Commit 8f4dc73

Browse files
committed
update for next release
1 parent 8398537 commit 8f4dc73

3 files changed

Lines changed: 7 additions & 6 deletions

File tree

.DS_Store

0 Bytes
Binary file not shown.

readme.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,14 +56,14 @@ for more details.
5656
* Release Notes: *
5757
******************
5858

59-
Version 1.3.0 (XX-XX-2020)
59+
Version 1.3.0 (07-06-2020)
6060
- Tools will now output DEFLATE compressed GeoTIFFs when the --compress_rasters parameter is used.
6161
- Added support for a newly developed compressed LiDAR data format, the ZLidar file. All tools
6262
that accepted LAS file inputs and produced LAS outputs can now use '*.zlidar' files as well. I
6363
have also added the LasToZlidar and ZlidarToLas tools to perform conversions. While the ZLidar
64-
format does not yield compression rates as good as the popular LAZ file format, you can expect
65-
ZLidar files to be between 20-30% of the size of the equivalent LAS file. A file specification
66-
will be published in the near future to describe the open ZLidar data format.
64+
format does not yield compression rates quite as good as the popular LAZ file format, you can
65+
expect ZLidar files to be between 20-30% of the size of the equivalent LAS file. A file
66+
specification will be published in the near future to describe the open ZLidar data format.
6767
- Added the AsciiToLas tool.
6868
- Added the ContoursFromRaster tool for creating a vector contour coverage from a raster surface model (DEM).
6969
- Added the ContoursFromPoints tool for creating a vector contour coverage from vector points.

whitebox_tools.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -419,6 +419,7 @@ def list_tools(self, keywords=[]):
419419

420420

421421

422+
422423

423424

424425
##############
@@ -3353,7 +3354,7 @@ def wetness_index(self, sca, slope, output, callback=None):
33533354
Keyword arguments:
33543355
33553356
sca -- Input raster specific contributing area (SCA) file.
3356-
slope -- Input raster slope file.
3357+
slope -- Input raster slope file (in degrees).
33573358
output -- Output raster file.
33583359
callback -- Custom function for handling tool text outputs.
33593360
"""
@@ -4469,7 +4470,7 @@ def modified_k_means_clustering(self, inputs, output, out_html=None, start_clust
44694470
args.append("--class_change={}".format(class_change))
44704471
return self.run_tool('modified_k_means_clustering', args, callback) # returns 1 if error
44714472

4472-
def mosaic(self, output, inputs=None, method="cc", callback=None):
4473+
def mosaic(self, output, inputs=None, method="nn", callback=None):
44734474
"""Mosaics two or more images together.
44744475
44754476
Keyword arguments:

0 commit comments

Comments
 (0)