survex-dist 0.3.0

A tool to calculate the distance between two stations in a Survex 3D file.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![doc = include_str!("../README.md")]
use std::process::exit;
use survex_dist::command::run;

fn main() {
    env_logger::init();

    match run() {
        Ok(_) => {}
        Err(e) => {
            eprintln!("{}", e);
            exit(1);
        }
    }
}