diff --git a/crates/total-viewsheds/src/config.rs b/crates/total-viewsheds/src/config.rs index f567ff1..a249c07 100644 --- a/crates/total-viewsheds/src/config.rs +++ b/crates/total-viewsheds/src/config.rs @@ -82,7 +82,7 @@ pub struct Compute { )] pub process: Vec, - /// The input DEM file. Currently only `.hgt` files are supported. + /// The input DEM file. Can be of any file type supported by GDAL. #[arg(value_name = "Path to the DEM file")] pub input: std::path::PathBuf, diff --git a/crates/total-viewsheds/src/pre_process.rs b/crates/total-viewsheds/src/pre_process.rs index 4a01739..8ecb543 100644 --- a/crates/total-viewsheds/src/pre_process.rs +++ b/crates/total-viewsheds/src/pre_process.rs @@ -9,7 +9,11 @@ pub fn create_biggest_tvs_subgrid(config: &crate::config::Compute) -> Result