Crates.io | sdc |
lib.rs | sdc |
version | 0.1.1 |
source | src |
created_at | 2015-11-22 17:39:06.04719 |
updated_at | 2015-12-12 23:55:19.918092 |
description | Read and write Riegl's .sdc file format |
homepage | https://github.com/gadomski/sdc-rs |
repository | https://github.com/gadomski/sdc-rs |
max_upload_size | |
id | 3477 |
size | 21,948 |
Read and write Riegl's .sdc
file format.
This library comes with an executable, named sdc
, that can perform some operations on .sdc
files.
.sdc
file?sdc
is a very simple binary format for storing point cloud data.
Its layout is defined in the documentation that comes with Riegl's SDCImport
tool.
An sdc
file has a very brief header that gives the format version and some optional arbitrary ASCII text, and then each point record follows.
The only way to get the total number of points in an sdc
file is to read to the end.
As much as possible, this code is available under the MIT license.
See LICENSE.txt
in this repository for the complete license.
We don't use any Riegl libraries, just their published file format, but in case it's unclear their file format is theirs, and all that.
As always, issues and pull requests are welcome.