Skip to content

Commit 645b09f

Browse files
committed
Update to LiDAR tool messages
Update to LiDAR tool messages. They are now more generic with "reading input LAS file" => "reading input LiDAR file". This makes sense now that LAZ is supported.
1 parent 78a3a00 commit 645b09f

31 files changed

Lines changed: 31 additions & 31 deletions

whitebox-plugins/src/exposure_towards_wind_flux/exposure_towards_wind_flux.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"short_description": "This tool evaluates hydrologic connectivity within a DEM",
55
"toolbox": "Geomorphometric Analysis",
66
"license": "MIT",
7-
"example": ".*EXE_NAME -r=ExposureTowardsWindFlux -i=input.tif -s=streams.tif -o=new.tif",
7+
"example": ".*EXE_NAME -r=ExposureTowardsWindFlux -dem=input.tif -o=exposure.tif --azimuth=35.0 --max_dist=500.0",
88
"parameters": [
99
{
1010
"name": "Input DEM Raster",

whitebox-tools-app/src/tools/lidar_analysis/block_maximum.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ impl WhiteboxTool for LidarBlockMaximum {
311311
}
312312

313313
if verbose && inputs.len() == 1 {
314-
println!("Reading input LAS file...");
314+
println!("reading input LiDAR file...");
315315
}
316316
let input = match LasFile::new(&input_file, "r") {
317317
Ok(lf) => lf,

whitebox-tools-app/src/tools/lidar_analysis/block_minimum.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ impl WhiteboxTool for LidarBlockMinimum {
311311
}
312312

313313
if verbose && inputs.len() == 1 {
314-
println!("Reading input LAS file...");
314+
println!("reading input LiDAR file...");
315315
}
316316
let input = match LasFile::new(&input_file, "r") {
317317
Ok(lf) => lf,

whitebox-tools-app/src/tools/lidar_analysis/classify_overlap_points.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ impl WhiteboxTool for ClassifyOverlapPoints {
229229
println!("{}", "*".repeat(welcome_len));
230230
}
231231

232-
println!("Reading input LAS file...");
232+
println!("reading input LiDAR file...");
233233
let input = match LasFile::new(&input_file, "r") {
234234
Ok(lf) => lf,
235235
Err(err) => panic!("Error reading file {}: {}", input_file, err),

whitebox-tools-app/src/tools/lidar_analysis/filter_lidar_classes.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ impl WhiteboxTool for FilterLidarClasses {
251251
}
252252

253253
if verbose {
254-
println!("Reading input LAS file...");
254+
println!("reading input LiDAR file...");
255255
}
256256
let input = match LasFile::new(&input_file, "r") {
257257
Ok(lf) => lf,

whitebox-tools-app/src/tools/lidar_analysis/filter_lidar_scan_angles.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ impl WhiteboxTool for FilterLidarScanAngles {
189189
}
190190

191191
if verbose {
192-
println!("Reading input LAS file...");
192+
println!("reading input LiDAR file...");
193193
}
194194
let input = match LasFile::new(&input_file, "r") {
195195
Ok(lf) => lf,

whitebox-tools-app/src/tools/lidar_analysis/find_flightline_edge_points.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ impl WhiteboxTool for FindFlightlineEdgePoints {
171171
}
172172

173173
if verbose {
174-
println!("Reading input LAS file...");
174+
println!("reading input LiDAR file...");
175175
}
176176
let input = match LasFile::new(&input_file, "r") {
177177
Ok(lf) => lf,

whitebox-tools-app/src/tools/lidar_analysis/flightline_overlap.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ impl WhiteboxTool for FlightlineOverlap {
289289
}
290290

291291
if verbose && inputs.len() == 1 {
292-
println!("Reading input LAS file...");
292+
println!("reading input LiDAR file...");
293293
}
294294
let input = match LasFile::new(&input_file, "r") {
295295
Ok(lf) => lf,

whitebox-tools-app/src/tools/lidar_analysis/las_to_multipoint_shapefile.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ impl WhiteboxTool for LasToMultipointShapefile {
250250
.replace(".ZLIDAR", ".shp");
251251

252252
if verbose && num_tiles == 1 {
253-
println!("Reading input LAS file...");
253+
println!("reading input LiDAR file...");
254254
}
255255

256256
let path = path::Path::new(&input_file);

whitebox-tools-app/src/tools/lidar_analysis/las_to_shapefile.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ impl WhiteboxTool for LasToShapefile {
243243
.replace(".ZLIDAR", ".shp");
244244

245245
if verbose && num_tiles == 1 {
246-
println!("Reading input LAS file...");
246+
println!("reading input LiDAR file...");
247247
}
248248

249249
let path = path::Path::new(&input_file);

0 commit comments

Comments
 (0)