Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 341 Bytes

README-crates.md

File metadata and controls

15 lines (11 loc) · 341 Bytes

sicd-rs

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.