Skip to content

Commit

Permalink
added readmes
Browse files Browse the repository at this point in the history
  • Loading branch information
benediktschwab committed Jul 9, 2024
1 parent 1ecffd6 commit 501b416
Show file tree
Hide file tree
Showing 11 changed files with 50 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ members = [
resolver = "2"

[workspace.package]
version = "0.0.1-alpha.2"
version = "0.0.1-alpha.3"
authors = ["Benedikt Schwab <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions crates/ecoord-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
description = "CLI tool for ecoord operations."
description = "CLI tool for transforms between 3D coordinate frames."


[dependencies]
ecoord = { version = "0.0.1-alpha.2", path = "../ecoord" }
ecoord = { version = "0.0.1-alpha.3", path = "../ecoord" }

clap = { workspace = true, features = ["derive"] }
tracing = { workspace = true }
Expand Down
7 changes: 7 additions & 0 deletions crates/ecoord-cli/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# ecoord-cli

CLI tool for transforms between 3D coordinate frames.

## Contributing

The library is developed at the [TUM Chair of Geoinformatics](https://github.com/tum-gis) and contributions are highly welcome.
2 changes: 1 addition & 1 deletion crates/ecoord-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
description = "Core transformations and operations between 3D coordinate frames."
description = "Core primitives and operations for transforms between 3D coordinate frames."


[dependencies]
Expand Down
7 changes: 7 additions & 0 deletions crates/ecoord-core/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# ecoord-cli

Core primitives and operations for transforms between 3D coordinate frames.

## Contributing

The library is developed at the [TUM Chair of Geoinformatics](https://github.com/tum-gis) and contributions are highly welcome.
4 changes: 2 additions & 2 deletions crates/ecoord-io/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
description = "IO operations for transformations between 3D coordinate frames."
description = "IO operations for transforms between 3D coordinate frames."


[dependencies]
ecoord-core = { version = "0.0.1-alpha.2", path = "../ecoord-core" }
ecoord-core = { version = "0.0.1-alpha.3", path = "../ecoord-core" }

thiserror = { workspace = true }
serde = { workspace = true, features = [ "derive" ] }
Expand Down
7 changes: 7 additions & 0 deletions crates/ecoord-io/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# ecoord-cli

IO operations for transforms between 3D coordinate frames.

## Contributing

The library is developed at the [TUM Chair of Geoinformatics](https://github.com/tum-gis) and contributions are highly welcome.
4 changes: 2 additions & 2 deletions crates/ecoord-transform/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
description = "Supplementary operations for transformations between 3D coordinate frames."
description = "Supplementary operations for transforms between 3D coordinate frames."

[dependencies]
ecoord-core = { version = "0.0.1-alpha.2", path = "../ecoord-core" }
ecoord-core = { version = "0.0.1-alpha.3", path = "../ecoord-core" }

thiserror = { workspace = true }
itertools = { workspace = true }
Expand Down
7 changes: 7 additions & 0 deletions crates/ecoord-transform/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# ecoord-cli

Supplementary operations for transforms between 3D coordinate frames.

## Contributing

The library is developed at the [TUM Chair of Geoinformatics](https://github.com/tum-gis) and contributions are highly welcome.
8 changes: 4 additions & 4 deletions crates/ecoord/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
description = "Transformations between 3D coordinate frames."
description = "Transforms between 3D coordinate frames."

[features]

[dependencies]
ecoord-core = { version = "0.0.1-alpha.2", path = "../ecoord-core" }
ecoord-transform = { version = "0.0.1-alpha.2", path = "../ecoord-transform" }
ecoord-io = { version = "0.0.1-alpha.2", path = "../ecoord-io" }
ecoord-core = { version = "0.0.1-alpha.3", path = "../ecoord-core" }
ecoord-transform = { version = "0.0.1-alpha.3", path = "../ecoord-transform" }
ecoord-io = { version = "0.0.1-alpha.3", path = "../ecoord-io" }
10 changes: 10 additions & 0 deletions crates/ecoord/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# ecoord

Transforms between 3D coordinate frames.

> [!WARNING]
> The library is at an early stage of development.
## Contributing

The library is developed at the [TUM Chair of Geoinformatics](https://github.com/tum-gis) and contributions are highly welcome.

0 comments on commit 501b416

Please sign in to comment.