seedlink-1.0.1 doesn't have any documentation.
seedlink
SeedLink Library for rust
SeedLink is a protocol for retrieving seismic data in realtime and semi-realtime from available servers
For information about the data formats and protocols, see:
- SeedLink: https://www.seiscomp3.org/wiki/doc/applications/seedlink
- MiniSEED: http://ds.iris.edu/ds/nodes/dmc/data/formats/miniseed/
- SEED: http://ds.iris.edu/ds/nodes/dmc/data/formats/seed/
Usage
Add this to your Cargo.toml
:
[]
= "1.0.0"
and this to your crate root:
extern crate seedlink;
You will probably need include the miniseed crate as well;
Example
extern crate seedlink;
extern crate miniseed;
use SeedLinkClient;