gribberish 1.2.0

Parse grib 2 files with Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use std::collections::HashMap;

use crate::utils::iter::projection::LatLngProjection;

pub trait GridDefinitionTemplate {
    fn proj_string(&self) -> String;
    fn proj_name(&self) -> String;
    fn proj_params(&self) -> HashMap<String, f64>;
    fn crs(&self) -> String;
    fn grid_point_count(&self) -> usize;
    fn is_regular_grid(&self) -> bool;
    fn y_count(&self) -> usize;
    fn x_count(&self) -> usize;
    fn projector(&self) -> LatLngProjection;
}