Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: use simple point reader from e57 library #14

Merged
merged 2 commits into from
Nov 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
137 changes: 72 additions & 65 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "e57-python"
version = "0.1.0-a2"
version = "0.1.0-a4"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand All @@ -9,7 +9,7 @@ name = "e57"
crate-type = ["cdylib"]

[dependencies]
pyo3 = "0.19.1"
e57 = "0.5.1"
numpy = "0.19.0"
pyo3 = "0.20.0"
e57 = "0.10.2"
numpy = "0.20.0"
ndarray = "0.15.6"
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ E57 is a compact, non-proprietary point cloud format that's defined by the ASTM
This python library wraps the [rust e57 library](https://github.com/cry-inc/e57) to provide file reading

- [x] Proof of concept xml reading
- [ ] Read e57 to python dict
- [ ] Read e57 to numpy array - work in progress - see `read_points` method.
- [x] Read e57 to numpy array - see `read_points` method.
- [ ] Write to e57 (format ?)

## Getting Started
Expand Down
Loading