Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 521 Bytes

File metadata and controls

18 lines (13 loc) · 521 Bytes

sicd-rs

crates.io docs

A rust SICD file interface

Example

// Read sicd and print metadata
let file = std::path::Path::new("../example.nitf");
let sicd = sicd_rs::read_sicd(file).unwrap();
println!("{:?}", sicd.meta);

If you have questions, would like to contribute, or would like to request something be added, please create an issue.