-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add tool to generate the Urquhart spanning graph
It's technically a sub graph of the Delaunay triangulation graph, and a super graph of the Euclidean minimal spanning tree
- Loading branch information
Showing
4 changed files
with
128 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
use clap::Parser; | ||
use generative::triangulation::GraphFormat; | ||
use generative::wkio::GeometryFormat; | ||
use std::path::PathBuf; | ||
|
||
/// Generate the Urquhart graph of the given geometries | ||
/// | ||
/// Approximates the point cloud's relative neighborhood. | ||
#[derive(Debug, Parser)] | ||
#[clap(name = "urquhart", verbatim_doc_comment)] | ||
pub struct CmdlineOptions { | ||
/// Increase logging verbosity. Defaults to ERROR level. | ||
#[clap(short, long, action = clap::ArgAction::Count)] | ||
pub verbosity: u8, | ||
|
||
/// Output file to write result to. Defaults to stdout. | ||
#[clap(short, long)] | ||
pub output: Option<PathBuf>, | ||
|
||
/// Output geometry format. | ||
#[clap(short = 'O', long, default_value = "wkt")] | ||
pub output_format: GraphFormat, | ||
|
||
/// Input file to read input from. Defaults to stdin. | ||
#[clap(short, long)] | ||
pub input: Option<PathBuf>, | ||
|
||
/// Input geometry format. | ||
#[clap(short = 'I', long, default_value_t = GeometryFormat::Wkt)] | ||
pub input_format: GeometryFormat, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
mod cmdline; | ||
|
||
use clap::Parser; | ||
use generative::flatten::flatten_geometries_into_points; | ||
use generative::stdio::{get_input_reader, get_output_writer}; | ||
use generative::triangulation::{triangulate, write_graph}; | ||
use generative::wkio::read_geometries; | ||
use stderrlog::ColorChoice; | ||
|
||
fn main() { | ||
let args = cmdline::CmdlineOptions::parse(); | ||
|
||
stderrlog::new() | ||
.verbosity(args.verbosity as usize + 1) // Default to WARN level. | ||
.color(ColorChoice::Auto) | ||
.init() | ||
.expect("Failed to initialize stderrlog"); | ||
|
||
let reader = get_input_reader(&args.input).unwrap(); | ||
let geometries = read_geometries(reader, &args.input_format); // lazily loaded | ||
|
||
let points = flatten_geometries_into_points(geometries); | ||
let triangulation = triangulate(points); | ||
let urquhart = triangulation.urquhart(); | ||
|
||
let writer = get_output_writer(&args.output).unwrap(); | ||
write_graph(writer, urquhart, &args.output_format); | ||
} |