This package is meant to provide solutions to common civil engineering problems. Everything is very much a work in progress. Ideally, on maturity, this library should support developers interested in making applications that assist with tasks like determining the geometric design of streets, sizing culverts and basic economic analysis for construction projects. The ultimate goal is to have a simple API for common civil engineering design equations so that an application developer can focus more on application-specific implementation rather than on researching methods. The aim of Civil is to be comprehensive enough to be useful, but simple enough to be flexible and lightweight. Consequently, complex tasks, like reading in digital elevation models, delineating watersheds and transforming geometric objects to be written to some very vendor-specific file types (I'm looking at you .DWG) is out of scope for this project.
Why this library?
Why make a library at all?
Why make a library at all, but this time without your snide annotations?
Why Rust?
There is basically no aspect of this project where contribution isn't welcomed. If you see a gap in the code, make a pull request. I'm not a professional developer, so if you see some pretty obvious meta-programming faux pax, bring it up.
Things this project needs: - Everything. - Tests - Benchmarks - Documentation
The Do's: 1. The file hierarchy should be clear and have intuitive organization based on logical groupings of tasks. 2. Clear documentation should be provided with every function or struct. 3. Clear documentation also means citation. If you add a function, then also provide a source. IEEE style citations are always good. 4. The build target is stable Rust. We all like nightly features, but the end user should not be forced to abandon the stable release to use this library. 5. Modules should be as independent as possible. 6. Write tests.
The Dont's: 1. Do not introduce dependencies that are not absolutely necessary. Using the new hotness in async should be left up to the end user. 2. Do not create interdependencies between top-level modules. Your geotech functions shouldn't break your hydrology functions.