copernicus_viewer 0.2.0

GUI viewer and library for inspecting and comparing EOPF Zarr products from the Copernicus ecosystem
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Array plotting: async loading, geo-referenced heatmaps, and CF flag visualization.

pub mod cf_decode;
pub mod flags;
pub mod georef;
pub mod loader;
pub mod workspace;

pub use cf_decode::{CfEncoding, apply_cf_decode, parse_cf_encoding};

pub use flags::{CfFlagMode, CfFlags, FlagSelection, parse_cf_flags};
pub use georef::{GeorefInfo, axis_label, extent_description};
pub use loader::{
    PlotData, PlotLoadResult, PlotRequest, ProgressCallback, load_plot_data, mutex_progress,
    shared_progress,
};
pub use workspace::{PlotLayout, PlotPanel, PlotSlotId, PlotSlotKey, PlotWorkspace};