Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ rand = { version = "0.9.3", features = ["std", "std_rng"] }
rand_chacha = "0.9"
rayon = "1.10.0"
reqwest = { version = "0.13.1", features = ["blocking", "json", "query"] }
roxmltree = "0.20"
rfd = { version = "0.16.0", optional = true }
semver = "1.0.27"
parquet = { version = "58", default-features = false, features = ["snap", "zstd"] }
Expand Down
7 changes: 7 additions & 0 deletions src/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,13 @@ pub struct Args {
#[arg(long = "no-3d", default_value_t = true, action = ArgAction::SetFalse)]
pub use_3d: bool,

/// Use real building heights from the Spanish Cadastre (Catastro).
/// Fetches the number of floors per building from the Catastro INSPIRE WFS
/// for the selected area and applies it to OSM buildings that lack a height.
/// Spain only (excludes the Basque Country and Navarra).
#[arg(long, default_value_t = false)]
pub catastro: bool,

/// Enable debug mode (optional)
#[arg(long)]
pub debug: bool,
Expand Down
Loading
Loading