Crates.io | miniseed |
lib.rs | miniseed |
version | 1.0.1 |
source | src |
created_at | 2017-10-16 09:50:11.013152 |
updated_at | 2017-10-16 10:02:16.577556 |
description | MiniSEED library for rust |
homepage | https://github.com/savage13/miniseed-rs |
repository | https://github.com/savage13/miniseed-rs |
max_upload_size | |
id | 35854 |
size | 121,018 |
MiniSEED Library for rust
This is a interface library over the libmseed C library that can be found at https://github.com/iris-edu/libmseed
For information about the data formats, see:
Add this to your Cargo.toml
:
[dependencies]
miniseed = "1.0.0"
and this to your crate root:
extern crate miniseed;
extern crate miniseed;
use miniseed::ms_record;
fn main() {
let file = "tests/sample.miniseed";
let m = ms_record::read(file);
println!("{}", m);
}