-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add unit convert operator * units and things * testing helpers * add angular units and format to table like * tests and move common steps to constructor * tidy ups * update readme * bump version and changelog update
- Loading branch information
Showing
8 changed files
with
431 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "geodesy-wasm" | ||
version = "0.2.0" | ||
version = "0.3.0" | ||
keywords = ["geospatial", "geodesy", "cartography", "geography"] | ||
categories = ["science"] | ||
authors = ["Sean Rennie <[email protected]>"] | ||
|
@@ -33,6 +33,7 @@ js-sys = "0.3.64" | |
thiserror = "1.0.44" | ||
console_log = { version = "1.0.0", features = ["color"], optional = true } | ||
log = "0.4.19" | ||
float_eq = "1.0.1" | ||
|
||
[dev-dependencies] | ||
wasm-bindgen-test = "0.3.37" | ||
|
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
mod context; | ||
mod coordinate; | ||
mod grid; | ||
mod operators; | ||
mod wasmcontext; |
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,9 @@ | ||
use geodesy_rs::authoring::*; | ||
|
||
mod unitconvert; | ||
pub mod units; | ||
|
||
#[rustfmt::skip] | ||
pub const ACCESSORY_OPERATORS: [(&str, OpConstructor); 1] = [ | ||
("unitconvert", OpConstructor(unitconvert::new)) | ||
]; |
Oops, something went wrong.