Skip to content

Commit af5f3c0

Browse files
committed
Prep for v1.0.1
1 parent 5baa337 commit af5f3c0

File tree

495 files changed

+6872
-3253
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

495 files changed

+6872
-3253
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: whitebox
22
Type: Package
33
Title: 'WhiteboxTools' R Frontend
4-
Version: 1.0.0
4+
Version: 1.0.1
55
Description: An R frontend of the 'WhiteboxTools' library, which is an advanced geospatial data analysis platform developed by Prof. John Lindsay at the University of Guelph's Geomorphometry and Hydrogeomatics Research Group. 'WhiteboxTools' can be used to perform common geographical information systems (GIS) analysis operations, such as cost-distance analysis, distance buffering, and raster reclassification. Remote sensing and image processing tasks include image enhancement (e.g. panchromatic sharpening, contrast adjustments), image mosaicing, numerous filtering operations, simple classification (k-means), and common image transformations. 'WhiteboxTools' also contains advanced tooling for spatial hydrological analysis (e.g. flow-accumulation, watershed delineation, stream network analysis, sink removal), terrain analysis (e.g. common terrain indices such as slope, curvatures, wetness index, hillshading; hypsometric analysis; multi-scale topographic position analysis), and LiDAR data processing. Suggested citation: Lindsay (2016) <doi:10.1016/j.cageo.2016.07.003>.
66
Authors@R: person("Qiusheng", "Wu", email = "giswqs@gmail.com", role = c("aut", "cre"))
77
Maintainer: Qiusheng Wu <giswqs@gmail.com>

PY2R/automation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ def function_example(fun_name):
284284
f.write(" skip_on_cran()\n")
285285
f.write(' dem <- system.file("extdata", "DEM.tif", package = "whitebox")\n')
286286
f.write(' ret <- {}(input = dem, output = "output.tif")\n'.format(fun_name))
287-
f.write(' expect_match( ret, "Elapsed Time" )\n\n')
287+
f.write(' expect_match(ret, "Elapsed Time")\n\n')
288288
f.write('})\n')
289289
print(test_file_path)
290290
f.close()

PY2R/tests/test-wbt_absolute_value.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ test_that("Calculates the absolute value of every cell in a raster", {
55
skip_on_cran()
66
dem <- system.file("extdata", "DEM.tif", package = "whitebox")
77
ret <- wbt_absolute_value(input = dem, output = "output.tif")
8-
expect_match( ret, "Elapsed Time" )
8+
expect_match(ret, "Elapsed Time")
99

1010
})

PY2R/tests/test-wbt_arc_cos.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ test_that("Returns the inverse cosine (arccos) of each values in a raster", {
55
skip_on_cran()
66
dem <- system.file("extdata", "DEM.tif", package = "whitebox")
77
ret <- wbt_arc_cos(input = dem, output = "output.tif")
8-
expect_match( ret, "Elapsed Time" )
8+
expect_match(ret, "Elapsed Time")
99

1010
})

PY2R/tests/test-wbt_arc_sin.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ test_that("Returns the inverse sine (arcsin) of each values in a raster", {
55
skip_on_cran()
66
dem <- system.file("extdata", "DEM.tif", package = "whitebox")
77
ret <- wbt_arc_sin(input = dem, output = "output.tif")
8-
expect_match( ret, "Elapsed Time" )
8+
expect_match(ret, "Elapsed Time")
99

1010
})

PY2R/tests/test-wbt_arc_tan.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ test_that("Returns the inverse tangent (arctan) of each values in a raster", {
55
skip_on_cran()
66
dem <- system.file("extdata", "DEM.tif", package = "whitebox")
77
ret <- wbt_arc_tan(input = dem, output = "output.tif")
8-
expect_match( ret, "Elapsed Time" )
8+
expect_match(ret, "Elapsed Time")
99

1010
})

PY2R/tests/test-wbt_ceil.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ test_that("Returns the smallest (closest to negative infinity) value that is gre
55
skip_on_cran()
66
dem <- system.file("extdata", "DEM.tif", package = "whitebox")
77
ret <- wbt_ceil(input = dem, output = "output.tif")
8-
expect_match( ret, "Elapsed Time" )
8+
expect_match(ret, "Elapsed Time")
99

1010
})

PY2R/tests/test-wbt_cos.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ test_that("Returns the cosine (cos) of each values in a raster", {
55
skip_on_cran()
66
dem <- system.file("extdata", "DEM.tif", package = "whitebox")
77
ret <- wbt_cos(input = dem, output = "output.tif")
8-
expect_match( ret, "Elapsed Time" )
8+
expect_match(ret, "Elapsed Time")
99

1010
})

PY2R/tests/test-wbt_cosh.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ test_that("Returns the hyperbolic cosine (cosh) of each values in a raster", {
55
skip_on_cran()
66
dem <- system.file("extdata", "DEM.tif", package = "whitebox")
77
ret <- wbt_cosh(input = dem, output = "output.tif")
8-
expect_match( ret, "Elapsed Time" )
8+
expect_match(ret, "Elapsed Time")
99

1010
})

PY2R/tests/test-wbt_cumulative_distribution.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ test_that("Converts a raster image to its cumulative distribution function", {
55
skip_on_cran()
66
dem <- system.file("extdata", "DEM.tif", package = "whitebox")
77
ret <- wbt_cumulative_distribution(input = dem, output = "output.tif")
8-
expect_match( ret, "Elapsed Time" )
8+
expect_match(ret, "Elapsed Time")
99

1010
})

0 commit comments

Comments
 (0)