use crate::error::{Error, Result};
use crate::util::grib_i32;
#[derive(Debug, Clone, PartialEq)]
#[non_exhaustive]
pub enum GridDefinition {
LatLon(LatLonGrid),
Mercator(MercatorGrid),
AlbersEqualArea(AlbersEqualAreaGrid),
LambertConformal(LambertConformalGrid),
PolarStereographic(PolarStereographicGrid),
Unsupported(u16),
}
#[derive(Debug, Clone, PartialEq)]
pub struct LatLonGrid {
pub ni: u32,
pub nj: u32,
pub lat_first: i32,
pub lon_first: i32,
pub lat_last: i32,
pub lon_last: i32,
pub di: u32,
pub dj: u32,
pub scanning_mode: u8,
}
#[derive(Debug, Clone, PartialEq)]
pub struct MercatorGrid {
pub number_of_points: u32,
pub shape_of_earth: u8,
pub scale_factor_radius: u8,
pub scaled_value_radius: u32,
pub scale_factor_major_axis: u8,
pub scaled_value_major_axis: u32,
pub scale_factor_minor_axis: u8,
pub scaled_value_minor_axis: u32,
pub ni: u32,
pub nj: u32,
pub lat_first: i32,
pub lon_first: i32,
pub resolution_and_component_flags: u8,
pub lat_d: i32,
pub lat_last: i32,
pub lon_last: i32,
pub scanning_mode: u8,
pub orientation_of_grid: u32,
pub di: u32,
pub dj: u32,
}
#[derive(Debug, Clone, PartialEq)]
pub struct LambertConformalGrid {
pub number_of_points: u32,
pub shape_of_earth: u8,
pub scale_factor_radius: u8,
pub scaled_value_radius: u32,
pub scale_factor_major_axis: u8,
pub scaled_value_major_axis: u32,
pub scale_factor_minor_axis: u8,
pub scaled_value_minor_axis: u32,
pub nx: u32,
pub ny: u32,
pub lat_first: i32,
pub lon_first: u32,
pub resolution_and_component_flags: u8,
pub lat_d: i32,
pub lon_v: u32,
pub dx: u32,
pub dy: u32,
pub projection_center_flag: u8,
pub scanning_mode: u8,
pub latin1: i32,
pub latin2: i32,
pub lat_southern_pole: i32,
pub lon_southern_pole: u32,
}
#[derive(Debug, Clone, PartialEq)]
pub struct AlbersEqualAreaGrid {
pub number_of_points: u32,
pub shape_of_earth: u8,
pub scale_factor_radius: u8,
pub scaled_value_radius: u32,
pub scale_factor_major_axis: u8,
pub scaled_value_major_axis: u32,
pub scale_factor_minor_axis: u8,
pub scaled_value_minor_axis: u32,
pub nx: u32,
pub ny: u32,
pub lat_first: i32,
pub lon_first: u32,
pub resolution_and_component_flags: u8,
pub lat_d: i32,
pub lon_v: u32,
pub dx: u32,
pub dy: u32,
pub projection_center_flag: u8,
pub scanning_mode: u8,
pub latin1: i32,
pub latin2: i32,
pub lat_southern_pole: i32,
pub lon_southern_pole: u32,
}
#[derive(Debug, Clone, PartialEq)]
pub struct PolarStereographicGrid {
pub number_of_points: u32,
pub shape_of_earth: u8,
pub scale_factor_radius: u8,
pub scaled_value_radius: u32,
pub scale_factor_major_axis: u8,
pub scaled_value_major_axis: u32,
pub scale_factor_minor_axis: u8,
pub scaled_value_minor_axis: u32,
pub nx: u32,
pub ny: u32,
pub lat_first: i32,
pub lon_first: u32,
pub resolution_and_component_flags: u8,
pub lat_d: i32,
pub lon_v: u32,
pub dx: u32,
pub dy: u32,
pub projection_center_flag: u8,
pub scanning_mode: u8,
}
impl GridDefinition {
pub fn template_number(&self) -> u16 {
match self {
Self::LatLon(_) => 0,
Self::Mercator(_) => 10,
Self::PolarStereographic(_) => 20,
Self::LambertConformal(_) => 30,
Self::AlbersEqualArea(_) => 31,
Self::Unsupported(template) => *template,
}
}
pub fn as_lat_lon(&self) -> Option<&LatLonGrid> {
match self {
Self::LatLon(grid) => Some(grid),
_ => None,
}
}
pub fn as_polar_stereographic(&self) -> Option<&PolarStereographicGrid> {
match self {
Self::PolarStereographic(grid) => Some(grid),
_ => None,
}
}
pub fn as_mercator(&self) -> Option<&MercatorGrid> {
match self {
Self::Mercator(grid) => Some(grid),
_ => None,
}
}
pub fn as_lambert_conformal(&self) -> Option<&LambertConformalGrid> {
match self {
Self::LambertConformal(grid) => Some(grid),
_ => None,
}
}
pub fn as_albers_equal_area(&self) -> Option<&AlbersEqualAreaGrid> {
match self {
Self::AlbersEqualArea(grid) => Some(grid),
_ => None,
}
}
pub fn unsupported_template(&self) -> Option<u16> {
match self {
Self::Unsupported(template) => Some(*template),
_ => None,
}
}
pub fn shape(&self) -> (usize, usize) {
match self {
Self::LatLon(g) => (g.ni as usize, g.nj as usize),
Self::Mercator(g) => (g.ni as usize, g.nj as usize),
Self::PolarStereographic(g) => (g.nx as usize, g.ny as usize),
Self::LambertConformal(g) => (g.nx as usize, g.ny as usize),
Self::AlbersEqualArea(g) => (g.nx as usize, g.ny as usize),
Self::Unsupported(_) => (0, 0),
}
}
pub fn shape_num_points(&self) -> Result<usize> {
match self {
Self::LatLon(g) => checked_grid_point_count(g.ni, g.nj),
Self::Mercator(g) => checked_grid_point_count(g.ni, g.nj),
Self::PolarStereographic(g) => checked_grid_point_count(g.nx, g.ny),
Self::LambertConformal(g) => checked_grid_point_count(g.nx, g.ny),
Self::AlbersEqualArea(g) => checked_grid_point_count(g.nx, g.ny),
Self::Unsupported(_) => Ok(0),
}
}
pub fn ndarray_shape(&self) -> Vec<usize> {
let (ni, nj) = self.shape();
match self {
Self::LatLon(_)
| Self::Mercator(_)
| Self::PolarStereographic(_)
| Self::LambertConformal(_)
| Self::AlbersEqualArea(_)
if ni > 0 && nj > 0 =>
{
vec![nj, ni]
}
_ => Vec::new(),
}
}
pub fn num_points(&self) -> usize {
self.checked_num_points().unwrap_or(usize::MAX)
}
pub fn checked_num_points(&self) -> Result<usize> {
match self {
Self::LatLon(_) => self.shape_num_points(),
Self::Mercator(g) => Ok(g.number_of_points as usize),
Self::PolarStereographic(g) => Ok(g.number_of_points as usize),
Self::LambertConformal(g) => Ok(g.number_of_points as usize),
Self::AlbersEqualArea(g) => Ok(g.number_of_points as usize),
Self::Unsupported(_) => Ok(0),
}
}
pub fn declared_num_points(&self) -> Option<usize> {
match self {
Self::Mercator(g) => Some(g.number_of_points as usize),
Self::PolarStereographic(g) => Some(g.number_of_points as usize),
Self::LambertConformal(g) => Some(g.number_of_points as usize),
Self::AlbersEqualArea(g) => Some(g.number_of_points as usize),
Self::LatLon(_) | Self::Unsupported(_) => None,
}
}
pub fn projected_x_coordinates(&self) -> Result<Option<Vec<f64>>> {
self.projected_x_coordinates_with_limit(None)
}
pub fn projected_x_coordinates_with_limit(
&self,
max_axis_points: Option<usize>,
) -> Result<Option<Vec<f64>>> {
match self {
Self::Mercator(grid) => Ok(Some(grid.x_coordinates_with_limit(max_axis_points)?)),
Self::PolarStereographic(grid) => {
Ok(Some(grid.x_coordinates_with_limit(max_axis_points)?))
}
Self::LambertConformal(grid) => {
Ok(Some(grid.x_coordinates_with_limit(max_axis_points)?))
}
Self::AlbersEqualArea(grid) => {
Ok(Some(grid.x_coordinates_with_limit(max_axis_points)?))
}
_ => Ok(None),
}
}
pub fn projected_y_coordinates(&self) -> Result<Option<Vec<f64>>> {
self.projected_y_coordinates_with_limit(None)
}
pub fn projected_y_coordinates_with_limit(
&self,
max_axis_points: Option<usize>,
) -> Result<Option<Vec<f64>>> {
match self {
Self::Mercator(grid) => Ok(Some(grid.y_coordinates_with_limit(max_axis_points)?)),
Self::PolarStereographic(grid) => {
Ok(Some(grid.y_coordinates_with_limit(max_axis_points)?))
}
Self::LambertConformal(grid) => {
Ok(Some(grid.y_coordinates_with_limit(max_axis_points)?))
}
Self::AlbersEqualArea(grid) => {
Ok(Some(grid.y_coordinates_with_limit(max_axis_points)?))
}
_ => Ok(None),
}
}
pub fn validate_supported_scan_order(&self) -> Result<()> {
match self {
Self::LatLon(grid) => grid.validate_supported_scan_order(),
Self::Mercator(grid) => grid.validate_supported_scan_order(),
Self::PolarStereographic(grid) => grid.validate_supported_scan_order(),
Self::LambertConformal(grid) => grid.validate_supported_scan_order(),
Self::AlbersEqualArea(grid) => grid.validate_supported_scan_order(),
Self::Unsupported(template) => Err(Error::UnsupportedGridTemplate(*template)),
}
}
pub fn reorder_for_ndarray_in_place<T>(&self, values: &mut [T]) -> Result<()> {
match self {
Self::LatLon(grid) => grid.reorder_for_ndarray_in_place(values),
Self::Mercator(grid) => grid.reorder_for_ndarray_in_place(values),
Self::PolarStereographic(grid) => grid.reorder_for_ndarray_in_place(values),
Self::LambertConformal(grid) => grid.reorder_for_ndarray_in_place(values),
Self::AlbersEqualArea(grid) => grid.reorder_for_ndarray_in_place(values),
Self::Unsupported(template) => Err(Error::UnsupportedGridTemplate(*template)),
}
}
pub fn parse(section_bytes: &[u8]) -> Result<Self> {
if section_bytes.len() < 14 {
return Err(Error::InvalidSection {
section: 3,
reason: format!("expected at least 14 bytes, got {}", section_bytes.len()),
});
}
if section_bytes[4] != 3 {
return Err(Error::InvalidSection {
section: section_bytes[4],
reason: "not a grid definition section".into(),
});
}
let template = u16::from_be_bytes(section_bytes[12..14].try_into().unwrap());
match template {
0 => parse_latlon(section_bytes),
10 => parse_mercator(section_bytes),
20 => parse_polar_stereographic(section_bytes),
30 => parse_lambert_conformal(section_bytes),
31 => parse_albers_equal_area(section_bytes),
_ => Ok(Self::Unsupported(template)),
}
}
}
impl LatLonGrid {
pub fn longitudes(&self) -> Result<Vec<f64>> {
self.longitudes_with_limit(None)
}
pub fn longitudes_with_limit(&self, max_axis_points: Option<usize>) -> Result<Vec<f64>> {
let step = self.di as f64 / 1_000_000.0;
let signed_step = if self.i_scans_positive() { step } else { -step };
let start = self.lon_first as f64 / 1_000_000.0;
linear_axis(
self.ni,
start,
signed_step,
max_axis_points,
"longitude axis",
)
}
pub fn latitudes(&self) -> Result<Vec<f64>> {
self.latitudes_with_limit(None)
}
pub fn latitudes_with_limit(&self, max_axis_points: Option<usize>) -> Result<Vec<f64>> {
let step = self.dj as f64 / 1_000_000.0;
let signed_step = if self.j_scans_positive() { step } else { -step };
let start = self.lat_first as f64 / 1_000_000.0;
linear_axis(
self.nj,
start,
signed_step,
max_axis_points,
"latitude axis",
)
}
pub fn reorder_for_ndarray<T>(&self, mut values: Vec<T>) -> Result<Vec<T>> {
self.reorder_grib_scan_to_ndarray_in_place(&mut values)?;
Ok(values)
}
pub fn reorder_for_ndarray_in_place<T>(&self, values: &mut [T]) -> Result<()> {
self.reorder_grib_scan_to_ndarray_in_place(values)
}
pub fn reorder_grib_scan_to_ndarray<T>(&self, mut values: Vec<T>) -> Result<Vec<T>> {
self.reorder_grib_scan_to_ndarray_in_place(&mut values)?;
Ok(values)
}
pub fn reorder_grib_scan_to_ndarray_in_place<T>(&self, values: &mut [T]) -> Result<()> {
transform_supported_scan_order_in_place(
values,
self.ni as usize,
self.nj as usize,
self.scanning_mode,
)
}
pub fn reorder_ndarray_to_grib_scan<T>(&self, mut values: Vec<T>) -> Result<Vec<T>> {
self.reorder_ndarray_to_grib_scan_in_place(&mut values)?;
Ok(values)
}
pub fn reorder_ndarray_to_grib_scan_in_place<T>(&self, values: &mut [T]) -> Result<()> {
transform_supported_scan_order_in_place(
values,
self.ni as usize,
self.nj as usize,
self.scanning_mode,
)
}
pub fn validate_supported_scan_order(&self) -> Result<()> {
validate_supported_scan_order(self.scanning_mode)
}
fn i_scans_positive(&self) -> bool {
i_scans_positive(self.scanning_mode)
}
fn j_scans_positive(&self) -> bool {
j_scans_positive(self.scanning_mode)
}
}
impl MercatorGrid {
pub fn x_coordinates(&self) -> Result<Vec<f64>> {
self.x_coordinates_with_limit(None)
}
pub fn x_coordinates_with_limit(&self, max_axis_points: Option<usize>) -> Result<Vec<f64>> {
projected_x_coordinates(self.ni, self.di, self.scanning_mode, max_axis_points)
}
pub fn y_coordinates(&self) -> Result<Vec<f64>> {
self.y_coordinates_with_limit(None)
}
pub fn y_coordinates_with_limit(&self, max_axis_points: Option<usize>) -> Result<Vec<f64>> {
projected_y_coordinates(self.nj, self.dj, self.scanning_mode, max_axis_points)
}
pub fn reorder_for_ndarray_in_place<T>(&self, values: &mut [T]) -> Result<()> {
transform_supported_scan_order_in_place(
values,
self.ni as usize,
self.nj as usize,
self.scanning_mode,
)
}
pub fn validate_supported_scan_order(&self) -> Result<()> {
validate_supported_scan_order(self.scanning_mode)
}
}
impl LambertConformalGrid {
pub fn x_coordinates(&self) -> Result<Vec<f64>> {
self.x_coordinates_with_limit(None)
}
pub fn x_coordinates_with_limit(&self, max_axis_points: Option<usize>) -> Result<Vec<f64>> {
projected_x_coordinates(self.nx, self.dx, self.scanning_mode, max_axis_points)
}
pub fn y_coordinates(&self) -> Result<Vec<f64>> {
self.y_coordinates_with_limit(None)
}
pub fn y_coordinates_with_limit(&self, max_axis_points: Option<usize>) -> Result<Vec<f64>> {
projected_y_coordinates(self.ny, self.dy, self.scanning_mode, max_axis_points)
}
pub fn reorder_for_ndarray_in_place<T>(&self, values: &mut [T]) -> Result<()> {
transform_supported_scan_order_in_place(
values,
self.nx as usize,
self.ny as usize,
self.scanning_mode,
)
}
pub fn validate_supported_scan_order(&self) -> Result<()> {
validate_supported_scan_order(self.scanning_mode)
}
}
impl AlbersEqualAreaGrid {
pub fn x_coordinates(&self) -> Result<Vec<f64>> {
self.x_coordinates_with_limit(None)
}
pub fn x_coordinates_with_limit(&self, max_axis_points: Option<usize>) -> Result<Vec<f64>> {
projected_x_coordinates(self.nx, self.dx, self.scanning_mode, max_axis_points)
}
pub fn y_coordinates(&self) -> Result<Vec<f64>> {
self.y_coordinates_with_limit(None)
}
pub fn y_coordinates_with_limit(&self, max_axis_points: Option<usize>) -> Result<Vec<f64>> {
projected_y_coordinates(self.ny, self.dy, self.scanning_mode, max_axis_points)
}
pub fn reorder_for_ndarray_in_place<T>(&self, values: &mut [T]) -> Result<()> {
transform_supported_scan_order_in_place(
values,
self.nx as usize,
self.ny as usize,
self.scanning_mode,
)
}
pub fn validate_supported_scan_order(&self) -> Result<()> {
validate_supported_scan_order(self.scanning_mode)
}
}
impl PolarStereographicGrid {
pub fn x_coordinates(&self) -> Result<Vec<f64>> {
self.x_coordinates_with_limit(None)
}
pub fn x_coordinates_with_limit(&self, max_axis_points: Option<usize>) -> Result<Vec<f64>> {
projected_x_coordinates(self.nx, self.dx, self.scanning_mode, max_axis_points)
}
pub fn y_coordinates(&self) -> Result<Vec<f64>> {
self.y_coordinates_with_limit(None)
}
pub fn y_coordinates_with_limit(&self, max_axis_points: Option<usize>) -> Result<Vec<f64>> {
projected_y_coordinates(self.ny, self.dy, self.scanning_mode, max_axis_points)
}
pub fn reorder_for_ndarray_in_place<T>(&self, values: &mut [T]) -> Result<()> {
transform_supported_scan_order_in_place(
values,
self.nx as usize,
self.ny as usize,
self.scanning_mode,
)
}
pub fn validate_supported_scan_order(&self) -> Result<()> {
validate_supported_scan_order(self.scanning_mode)
}
}
fn transform_supported_scan_order_in_place<T>(
values: &mut [T],
ni: usize,
nj: usize,
scanning_mode: u8,
) -> Result<()> {
validate_supported_scan_order(scanning_mode)?;
let expected = ni
.checked_mul(nj)
.ok_or_else(|| Error::Other("grid point count overflow".into()))?;
if values.len() != expected {
return Err(Error::DataLengthMismatch {
expected,
actual: values.len(),
});
}
if adjacent_rows_alternate_direction(scanning_mode) {
reverse_alternating_rows(values, ni, nj, i_scans_positive(scanning_mode));
}
Ok(())
}
fn validate_supported_scan_order(scanning_mode: u8) -> Result<()> {
if i_points_are_consecutive(scanning_mode) {
Ok(())
} else {
Err(Error::UnsupportedScanningMode(scanning_mode))
}
}
fn i_scans_positive(scanning_mode: u8) -> bool {
scanning_mode & 0b1000_0000 == 0
}
fn j_scans_positive(scanning_mode: u8) -> bool {
scanning_mode & 0b0100_0000 != 0
}
fn i_points_are_consecutive(scanning_mode: u8) -> bool {
scanning_mode & 0b0010_0000 == 0
}
fn adjacent_rows_alternate_direction(scanning_mode: u8) -> bool {
scanning_mode & 0b0001_0000 != 0
}
fn projected_x_coordinates(
count: u32,
spacing_millimetres: u32,
scanning_mode: u8,
max_axis_points: Option<usize>,
) -> Result<Vec<f64>> {
projected_axis(
count,
spacing_millimetres,
i_scans_positive(scanning_mode),
max_axis_points,
"projected x axis",
)
}
fn projected_y_coordinates(
count: u32,
spacing_millimetres: u32,
scanning_mode: u8,
max_axis_points: Option<usize>,
) -> Result<Vec<f64>> {
projected_axis(
count,
spacing_millimetres,
j_scans_positive(scanning_mode),
max_axis_points,
"projected y axis",
)
}
fn projected_axis(
count: u32,
spacing_millimetres: u32,
scans_positive: bool,
max_axis_points: Option<usize>,
what: &'static str,
) -> Result<Vec<f64>> {
let step = f64::from(spacing_millimetres) / 1_000.0;
let signed_step = if scans_positive { step } else { -step };
linear_axis(count, 0.0, signed_step, max_axis_points, what)
}
fn linear_axis(
count: u32,
start: f64,
signed_step: f64,
max_axis_points: Option<usize>,
what: &'static str,
) -> Result<Vec<f64>> {
let count = count as usize;
ensure_limit(what, count, max_axis_points)?;
let mut axis = Vec::new();
axis.try_reserve(count)
.map_err(|e| Error::Other(format!("failed to reserve {count} {what} coordinates: {e}")))?;
axis.extend((0..count).map(|index| start + signed_step * index as f64));
Ok(axis)
}
fn checked_grid_point_count(nx: u32, ny: u32) -> Result<usize> {
let count = u64::from(nx) * u64::from(ny);
usize::try_from(count)
.map_err(|_| Error::Other(format!("grid point count {count} does not fit in usize")))
}
fn ensure_limit(what: &'static str, requested: usize, limit: Option<usize>) -> Result<()> {
if let Some(limit) = limit {
if requested > limit {
return Err(Error::LimitExceeded {
what,
requested,
limit,
});
}
}
Ok(())
}
fn reverse_alternating_rows<T>(values: &mut [T], ni: usize, nj: usize, i_scans_positive: bool) {
for row in 0..nj {
let reverse = if i_scans_positive {
row % 2 == 1
} else {
row % 2 == 0
};
if reverse {
values[row * ni..(row + 1) * ni].reverse();
}
}
}
fn parse_latlon(data: &[u8]) -> Result<GridDefinition> {
if data.len() < 72 {
return Err(Error::InvalidSection {
section: 3,
reason: format!("template 3.0 requires 72 bytes, got {}", data.len()),
});
}
let ni = u32::from_be_bytes(data[30..34].try_into().unwrap());
let nj = u32::from_be_bytes(data[34..38].try_into().unwrap());
let lat_first = grib_i32(&data[46..50]).unwrap();
let lon_first = grib_i32(&data[50..54]).unwrap();
let lat_last = grib_i32(&data[55..59]).unwrap();
let lon_last = grib_i32(&data[59..63]).unwrap();
let di = u32::from_be_bytes(data[63..67].try_into().unwrap());
let dj = u32::from_be_bytes(data[67..71].try_into().unwrap());
let scanning_mode = data[71];
Ok(GridDefinition::LatLon(LatLonGrid {
ni,
nj,
lat_first,
lon_first,
lat_last,
lon_last,
di,
dj,
scanning_mode,
}))
}
fn parse_mercator(data: &[u8]) -> Result<GridDefinition> {
if data.len() < 72 {
return Err(Error::InvalidSection {
section: 3,
reason: format!("template 3.10 requires 72 bytes, got {}", data.len()),
});
}
Ok(GridDefinition::Mercator(MercatorGrid {
number_of_points: u32::from_be_bytes(data[6..10].try_into().unwrap()),
shape_of_earth: data[14],
scale_factor_radius: data[15],
scaled_value_radius: u32::from_be_bytes(data[16..20].try_into().unwrap()),
scale_factor_major_axis: data[20],
scaled_value_major_axis: u32::from_be_bytes(data[21..25].try_into().unwrap()),
scale_factor_minor_axis: data[25],
scaled_value_minor_axis: u32::from_be_bytes(data[26..30].try_into().unwrap()),
ni: u32::from_be_bytes(data[30..34].try_into().unwrap()),
nj: u32::from_be_bytes(data[34..38].try_into().unwrap()),
lat_first: grib_i32(&data[38..42]).unwrap(),
lon_first: grib_i32(&data[42..46]).unwrap(),
resolution_and_component_flags: data[46],
lat_d: grib_i32(&data[47..51]).unwrap(),
lat_last: grib_i32(&data[51..55]).unwrap(),
lon_last: grib_i32(&data[55..59]).unwrap(),
scanning_mode: data[59],
orientation_of_grid: u32::from_be_bytes(data[60..64].try_into().unwrap()),
di: u32::from_be_bytes(data[64..68].try_into().unwrap()),
dj: u32::from_be_bytes(data[68..72].try_into().unwrap()),
}))
}
fn parse_polar_stereographic(data: &[u8]) -> Result<GridDefinition> {
if data.len() < 65 {
return Err(Error::InvalidSection {
section: 3,
reason: format!("template 3.20 requires 65 bytes, got {}", data.len()),
});
}
Ok(GridDefinition::PolarStereographic(PolarStereographicGrid {
number_of_points: u32::from_be_bytes(data[6..10].try_into().unwrap()),
shape_of_earth: data[14],
scale_factor_radius: data[15],
scaled_value_radius: u32::from_be_bytes(data[16..20].try_into().unwrap()),
scale_factor_major_axis: data[20],
scaled_value_major_axis: u32::from_be_bytes(data[21..25].try_into().unwrap()),
scale_factor_minor_axis: data[25],
scaled_value_minor_axis: u32::from_be_bytes(data[26..30].try_into().unwrap()),
nx: u32::from_be_bytes(data[30..34].try_into().unwrap()),
ny: u32::from_be_bytes(data[34..38].try_into().unwrap()),
lat_first: grib_i32(&data[38..42]).unwrap(),
lon_first: u32::from_be_bytes(data[42..46].try_into().unwrap()),
resolution_and_component_flags: data[46],
lat_d: grib_i32(&data[47..51]).unwrap(),
lon_v: u32::from_be_bytes(data[51..55].try_into().unwrap()),
dx: u32::from_be_bytes(data[55..59].try_into().unwrap()),
dy: u32::from_be_bytes(data[59..63].try_into().unwrap()),
projection_center_flag: data[63],
scanning_mode: data[64],
}))
}
fn parse_albers_equal_area(data: &[u8]) -> Result<GridDefinition> {
if data.len() < 81 {
return Err(Error::InvalidSection {
section: 3,
reason: format!("template 3.31 requires 81 bytes, got {}", data.len()),
});
}
Ok(GridDefinition::AlbersEqualArea(AlbersEqualAreaGrid {
number_of_points: u32::from_be_bytes(data[6..10].try_into().unwrap()),
shape_of_earth: data[14],
scale_factor_radius: data[15],
scaled_value_radius: u32::from_be_bytes(data[16..20].try_into().unwrap()),
scale_factor_major_axis: data[20],
scaled_value_major_axis: u32::from_be_bytes(data[21..25].try_into().unwrap()),
scale_factor_minor_axis: data[25],
scaled_value_minor_axis: u32::from_be_bytes(data[26..30].try_into().unwrap()),
nx: u32::from_be_bytes(data[30..34].try_into().unwrap()),
ny: u32::from_be_bytes(data[34..38].try_into().unwrap()),
lat_first: grib_i32(&data[38..42]).unwrap(),
lon_first: u32::from_be_bytes(data[42..46].try_into().unwrap()),
resolution_and_component_flags: data[46],
lat_d: grib_i32(&data[47..51]).unwrap(),
lon_v: u32::from_be_bytes(data[51..55].try_into().unwrap()),
dx: u32::from_be_bytes(data[55..59].try_into().unwrap()),
dy: u32::from_be_bytes(data[59..63].try_into().unwrap()),
projection_center_flag: data[63],
scanning_mode: data[64],
latin1: grib_i32(&data[65..69]).unwrap(),
latin2: grib_i32(&data[69..73]).unwrap(),
lat_southern_pole: grib_i32(&data[73..77]).unwrap(),
lon_southern_pole: u32::from_be_bytes(data[77..81].try_into().unwrap()),
}))
}
fn parse_lambert_conformal(data: &[u8]) -> Result<GridDefinition> {
if data.len() < 81 {
return Err(Error::InvalidSection {
section: 3,
reason: format!("template 3.30 requires 81 bytes, got {}", data.len()),
});
}
Ok(GridDefinition::LambertConformal(LambertConformalGrid {
number_of_points: u32::from_be_bytes(data[6..10].try_into().unwrap()),
shape_of_earth: data[14],
scale_factor_radius: data[15],
scaled_value_radius: u32::from_be_bytes(data[16..20].try_into().unwrap()),
scale_factor_major_axis: data[20],
scaled_value_major_axis: u32::from_be_bytes(data[21..25].try_into().unwrap()),
scale_factor_minor_axis: data[25],
scaled_value_minor_axis: u32::from_be_bytes(data[26..30].try_into().unwrap()),
nx: u32::from_be_bytes(data[30..34].try_into().unwrap()),
ny: u32::from_be_bytes(data[34..38].try_into().unwrap()),
lat_first: grib_i32(&data[38..42]).unwrap(),
lon_first: u32::from_be_bytes(data[42..46].try_into().unwrap()),
resolution_and_component_flags: data[46],
lat_d: grib_i32(&data[47..51]).unwrap(),
lon_v: u32::from_be_bytes(data[51..55].try_into().unwrap()),
dx: u32::from_be_bytes(data[55..59].try_into().unwrap()),
dy: u32::from_be_bytes(data[59..63].try_into().unwrap()),
projection_center_flag: data[63],
scanning_mode: data[64],
latin1: grib_i32(&data[65..69]).unwrap(),
latin2: grib_i32(&data[69..73]).unwrap(),
lat_southern_pole: grib_i32(&data[73..77]).unwrap(),
lon_southern_pole: u32::from_be_bytes(data[77..81].try_into().unwrap()),
}))
}
#[cfg(test)]
mod tests {
use super::{
AlbersEqualAreaGrid, GridDefinition, LambertConformalGrid, LatLonGrid, MercatorGrid,
PolarStereographicGrid,
};
use crate::binary::encode_wmo_i32;
#[test]
fn reports_latlon_shape() {
let grid = GridDefinition::LatLon(LatLonGrid {
ni: 3,
nj: 2,
lat_first: 50_000_000,
lon_first: -120_000_000,
lat_last: 49_000_000,
lon_last: -118_000_000,
di: 1_000_000,
dj: 1_000_000,
scanning_mode: 0,
});
assert_eq!(grid.shape(), (3, 2));
assert_eq!(grid.ndarray_shape(), vec![2, 3]);
assert_eq!(grid.template_number(), 0);
assert!(grid.as_lat_lon().is_some());
assert!(grid.as_mercator().is_none());
assert!(grid.as_polar_stereographic().is_none());
assert!(grid.as_lambert_conformal().is_none());
assert!(grid.as_albers_equal_area().is_none());
assert_eq!(grid.unsupported_template(), None);
match grid {
GridDefinition::LatLon(ref latlon) => {
assert_eq!(latlon.longitudes().unwrap(), vec![-120.0, -119.0, -118.0]);
assert_eq!(latlon.latitudes().unwrap(), vec![50.0, 49.0]);
}
other => panic!("expected lat/lon grid, got {other:?}"),
}
}
#[test]
fn parses_mercator_template() {
let section = build_mercator_section(0);
let grid = GridDefinition::parse(§ion).unwrap();
assert_eq!(grid.shape(), (3, 2));
assert_eq!(grid.ndarray_shape(), vec![2, 3]);
assert_eq!(grid.num_points(), 6);
assert_eq!(grid.template_number(), 10);
assert!(grid.as_lat_lon().is_none());
assert!(grid.as_mercator().is_some());
assert!(grid.as_lambert_conformal().is_none());
assert_eq!(grid.unsupported_template(), None);
match grid {
GridDefinition::Mercator(mercator) => {
assert_eq!(mercator.number_of_points, 6);
assert_eq!(mercator.shape_of_earth, 6);
assert_eq!(mercator.ni, 3);
assert_eq!(mercator.nj, 2);
assert_eq!(mercator.lat_first, -20_000_000);
assert_eq!(mercator.lon_first, -100_000_000);
assert_eq!(mercator.resolution_and_component_flags, 0x08);
assert_eq!(mercator.lat_d, 0);
assert_eq!(mercator.lat_last, 20_000_000);
assert_eq!(mercator.lon_last, -98_000_000);
assert_eq!(mercator.scanning_mode, 0);
assert_eq!(mercator.orientation_of_grid, 0);
assert_eq!(mercator.di, 1_000_000);
assert_eq!(mercator.dj, 2_000_000);
}
other => panic!("expected Mercator grid, got {other:?}"),
}
}
#[test]
fn parses_polar_stereographic_template() {
let section = build_polar_stereographic_section(0);
let grid = GridDefinition::parse(§ion).unwrap();
assert_eq!(grid.shape(), (3, 2));
assert_eq!(grid.ndarray_shape(), vec![2, 3]);
assert_eq!(grid.num_points(), 6);
assert_eq!(grid.template_number(), 20);
assert!(grid.as_lat_lon().is_none());
assert!(grid.as_mercator().is_none());
assert!(grid.as_polar_stereographic().is_some());
assert!(grid.as_lambert_conformal().is_none());
assert!(grid.as_albers_equal_area().is_none());
assert_eq!(grid.unsupported_template(), None);
match grid {
GridDefinition::PolarStereographic(polar) => {
assert_eq!(polar.number_of_points, 6);
assert_eq!(polar.shape_of_earth, 6);
assert_eq!(polar.nx, 3);
assert_eq!(polar.ny, 2);
assert_eq!(polar.lat_first, 41_612_949);
assert_eq!(polar.lon_first, 185_117_126);
assert_eq!(polar.resolution_and_component_flags, 0x08);
assert_eq!(polar.lat_d, 60_000_000);
assert_eq!(polar.lon_v, 225_000_000);
assert_eq!(polar.dx, 3_000_000);
assert_eq!(polar.dy, 3_000_000);
assert_eq!(polar.projection_center_flag, 0);
assert_eq!(polar.scanning_mode, 0);
}
other => panic!("expected polar stereographic grid, got {other:?}"),
}
}
#[test]
fn parses_albers_equal_area_template() {
let section = build_albers_section();
let grid = GridDefinition::parse(§ion).unwrap();
assert_eq!(grid.shape(), (3, 2));
assert_eq!(grid.ndarray_shape(), vec![2, 3]);
assert_eq!(grid.num_points(), 6);
assert_eq!(grid.template_number(), 31);
assert!(grid.as_lat_lon().is_none());
assert!(grid.as_albers_equal_area().is_some());
assert_eq!(grid.unsupported_template(), None);
match grid {
GridDefinition::AlbersEqualArea(albers) => {
assert_eq!(albers.number_of_points, 6);
assert_eq!(albers.shape_of_earth, 6);
assert_eq!(albers.nx, 3);
assert_eq!(albers.ny, 2);
assert_eq!(albers.lat_first, 23_000_000);
assert_eq!(albers.lon_first, 240_000_000);
assert_eq!(albers.resolution_and_component_flags, 0x08);
assert_eq!(albers.lat_d, 25_000_000);
assert_eq!(albers.lon_v, 265_000_000);
assert_eq!(albers.dx, 4_000_000);
assert_eq!(albers.dy, 5_000_000);
assert_eq!(albers.projection_center_flag, 0);
assert_eq!(albers.scanning_mode, 0);
assert_eq!(albers.latin1, 29_500_000);
assert_eq!(albers.latin2, 45_500_000);
assert_eq!(albers.lat_southern_pole, -90_000_000);
assert_eq!(albers.lon_southern_pole, 0);
}
other => panic!("expected Albers equal-area grid, got {other:?}"),
}
}
#[test]
fn parses_lambert_conformal_template() {
let section = build_lambert_section();
let grid = GridDefinition::parse(§ion).unwrap();
assert_eq!(grid.shape(), (3, 2));
assert_eq!(grid.ndarray_shape(), vec![2, 3]);
assert_eq!(grid.num_points(), 6);
assert_eq!(grid.template_number(), 30);
assert!(grid.as_lat_lon().is_none());
assert!(grid.as_lambert_conformal().is_some());
assert!(grid.as_albers_equal_area().is_none());
assert_eq!(grid.unsupported_template(), None);
match grid {
GridDefinition::LambertConformal(lambert) => {
assert_eq!(lambert.number_of_points, 6);
assert_eq!(lambert.shape_of_earth, 1);
assert_eq!(lambert.scaled_value_radius, 6_371_200);
assert_eq!(lambert.nx, 3);
assert_eq!(lambert.ny, 2);
assert_eq!(lambert.lat_first, 12_190_000);
assert_eq!(lambert.lon_first, 226_541_000);
assert_eq!(lambert.resolution_and_component_flags, 0x08);
assert_eq!(lambert.lat_d, 25_000_000);
assert_eq!(lambert.lon_v, 265_000_000);
assert_eq!(lambert.dx, 2_539_703);
assert_eq!(lambert.dy, 2_539_703);
assert_eq!(lambert.projection_center_flag, 0);
assert_eq!(lambert.scanning_mode, 0);
assert_eq!(lambert.latin1, 25_000_000);
assert_eq!(lambert.latin2, 25_000_000);
assert_eq!(lambert.lat_southern_pole, -90_000_000);
assert_eq!(lambert.lon_southern_pole, 0);
}
other => panic!("expected Lambert conformal grid, got {other:?}"),
}
}
#[test]
fn reports_unsupported_template_helpers() {
let grid = GridDefinition::Unsupported(3_276);
assert_eq!(grid.template_number(), 3_276);
assert!(grid.as_lat_lon().is_none());
assert!(grid.as_mercator().is_none());
assert!(grid.as_polar_stereographic().is_none());
assert!(grid.as_lambert_conformal().is_none());
assert!(grid.as_albers_equal_area().is_none());
assert_eq!(grid.unsupported_template(), Some(3_276));
}
#[test]
fn normalizes_alternating_row_scan() {
let grid = LatLonGrid {
ni: 3,
nj: 2,
lat_first: 0,
lon_first: 0,
lat_last: 0,
lon_last: 0,
di: 1,
dj: 1,
scanning_mode: 0b0001_0000,
};
let ordered = grid
.reorder_for_ndarray(vec![1.0, 2.0, 3.0, 6.0, 5.0, 4.0])
.unwrap();
assert_eq!(ordered, vec![1.0, 2.0, 3.0, 4.0, 5.0, 6.0]);
}
#[test]
fn converts_ndarray_order_to_alternating_scan_order() {
let grid = LatLonGrid {
ni: 3,
nj: 2,
lat_first: 0,
lon_first: 0,
lat_last: 0,
lon_last: 0,
di: 1,
dj: 1,
scanning_mode: 0b0001_0000,
};
let scan_order = grid
.reorder_ndarray_to_grib_scan(vec![1, 2, 3, 4, 5, 6])
.unwrap();
assert_eq!(scan_order, vec![1, 2, 3, 6, 5, 4]);
}
#[test]
fn normalizes_polar_stereographic_alternating_row_scan() {
let grid = PolarStereographicGrid {
number_of_points: 6,
shape_of_earth: 6,
scale_factor_radius: 0,
scaled_value_radius: 0,
scale_factor_major_axis: 0,
scaled_value_major_axis: 0,
scale_factor_minor_axis: 0,
scaled_value_minor_axis: 0,
nx: 3,
ny: 2,
lat_first: 0,
lon_first: 0,
resolution_and_component_flags: 0,
lat_d: 0,
lon_v: 0,
dx: 1,
dy: 1,
projection_center_flag: 0,
scanning_mode: 0b0001_0000,
};
let mut values = vec![1.0, 2.0, 3.0, 6.0, 5.0, 4.0];
grid.reorder_for_ndarray_in_place(&mut values).unwrap();
assert_eq!(values, vec![1.0, 2.0, 3.0, 4.0, 5.0, 6.0]);
}
#[test]
fn normalizes_mercator_alternating_row_scan() {
let grid = MercatorGrid {
number_of_points: 6,
shape_of_earth: 6,
scale_factor_radius: 0,
scaled_value_radius: 0,
scale_factor_major_axis: 0,
scaled_value_major_axis: 0,
scale_factor_minor_axis: 0,
scaled_value_minor_axis: 0,
ni: 3,
nj: 2,
lat_first: 0,
lon_first: 0,
resolution_and_component_flags: 0,
lat_d: 0,
lat_last: 0,
lon_last: 0,
scanning_mode: 0b0001_0000,
orientation_of_grid: 0,
di: 1,
dj: 1,
};
let mut values = vec![1.0, 2.0, 3.0, 6.0, 5.0, 4.0];
grid.reorder_for_ndarray_in_place(&mut values).unwrap();
assert_eq!(values, vec![1.0, 2.0, 3.0, 4.0, 5.0, 6.0]);
}
#[test]
fn normalizes_lambert_alternating_row_scan() {
let grid = LambertConformalGrid {
number_of_points: 6,
shape_of_earth: 1,
scale_factor_radius: 0,
scaled_value_radius: 6_371_200,
scale_factor_major_axis: 0,
scaled_value_major_axis: 0,
scale_factor_minor_axis: 0,
scaled_value_minor_axis: 0,
nx: 3,
ny: 2,
lat_first: 0,
lon_first: 0,
resolution_and_component_flags: 0,
lat_d: 0,
lon_v: 0,
dx: 1,
dy: 1,
projection_center_flag: 0,
scanning_mode: 0b0001_0000,
latin1: 0,
latin2: 0,
lat_southern_pole: 0,
lon_southern_pole: 0,
};
let mut values = vec![1.0, 2.0, 3.0, 6.0, 5.0, 4.0];
grid.reorder_for_ndarray_in_place(&mut values).unwrap();
assert_eq!(values, vec![1.0, 2.0, 3.0, 4.0, 5.0, 6.0]);
}
#[test]
fn normalizes_albers_alternating_row_scan() {
let grid = AlbersEqualAreaGrid {
number_of_points: 6,
shape_of_earth: 6,
scale_factor_radius: 0,
scaled_value_radius: 0,
scale_factor_major_axis: 0,
scaled_value_major_axis: 0,
scale_factor_minor_axis: 0,
scaled_value_minor_axis: 0,
nx: 3,
ny: 2,
lat_first: 0,
lon_first: 0,
resolution_and_component_flags: 0,
lat_d: 0,
lon_v: 0,
dx: 1,
dy: 1,
projection_center_flag: 0,
scanning_mode: 0b0001_0000,
latin1: 0,
latin2: 0,
lat_southern_pole: 0,
lon_southern_pole: 0,
};
let mut values = vec![1.0, 2.0, 3.0, 6.0, 5.0, 4.0];
grid.reorder_for_ndarray_in_place(&mut values).unwrap();
assert_eq!(values, vec![1.0, 2.0, 3.0, 4.0, 5.0, 6.0]);
}
#[test]
fn generates_projected_coordinate_offsets() {
let mercator = GridDefinition::Mercator(MercatorGrid {
number_of_points: 6,
shape_of_earth: 6,
scale_factor_radius: 0,
scaled_value_radius: 0,
scale_factor_major_axis: 0,
scaled_value_major_axis: 0,
scale_factor_minor_axis: 0,
scaled_value_minor_axis: 0,
ni: 3,
nj: 2,
lat_first: 0,
lon_first: 0,
resolution_and_component_flags: 0,
lat_d: 0,
lat_last: 0,
lon_last: 0,
scanning_mode: 0,
orientation_of_grid: 0,
di: 1_000_000,
dj: 2_000_000,
});
assert_eq!(
mercator.projected_x_coordinates().unwrap().unwrap(),
vec![0.0, 1_000.0, 2_000.0]
);
assert_eq!(
mercator.projected_y_coordinates().unwrap().unwrap(),
vec![-0.0, -2_000.0]
);
let polar = GridDefinition::PolarStereographic(PolarStereographicGrid {
number_of_points: 6,
shape_of_earth: 6,
scale_factor_radius: 0,
scaled_value_radius: 0,
scale_factor_major_axis: 0,
scaled_value_major_axis: 0,
scale_factor_minor_axis: 0,
scaled_value_minor_axis: 0,
nx: 3,
ny: 2,
lat_first: 0,
lon_first: 0,
resolution_and_component_flags: 0,
lat_d: 0,
lon_v: 0,
dx: 3_000_000,
dy: 6_000_000,
projection_center_flag: 0,
scanning_mode: 0,
});
assert_eq!(
polar.projected_x_coordinates().unwrap().unwrap(),
vec![0.0, 3_000.0, 6_000.0]
);
assert_eq!(
polar.projected_y_coordinates().unwrap().unwrap(),
vec![-0.0, -6_000.0]
);
let lambert = GridDefinition::LambertConformal(LambertConformalGrid {
number_of_points: 6,
shape_of_earth: 1,
scale_factor_radius: 0,
scaled_value_radius: 6_371_200,
scale_factor_major_axis: 0,
scaled_value_major_axis: 0,
scale_factor_minor_axis: 0,
scaled_value_minor_axis: 0,
nx: 3,
ny: 2,
lat_first: 0,
lon_first: 0,
resolution_and_component_flags: 0,
lat_d: 0,
lon_v: 0,
dx: 2_539_703,
dy: 2_539_703,
projection_center_flag: 0,
scanning_mode: 0b1100_0000,
latin1: 0,
latin2: 0,
lat_southern_pole: 0,
lon_southern_pole: 0,
});
assert_eq!(
lambert.projected_x_coordinates().unwrap().unwrap(),
vec![-0.0, -2_539.703, -5_079.406]
);
assert_eq!(
lambert.projected_y_coordinates().unwrap().unwrap(),
vec![0.0, 2_539.703]
);
let albers = GridDefinition::AlbersEqualArea(AlbersEqualAreaGrid {
number_of_points: 6,
shape_of_earth: 6,
scale_factor_radius: 0,
scaled_value_radius: 0,
scale_factor_major_axis: 0,
scaled_value_major_axis: 0,
scale_factor_minor_axis: 0,
scaled_value_minor_axis: 0,
nx: 3,
ny: 2,
lat_first: 0,
lon_first: 0,
resolution_and_component_flags: 0,
lat_d: 0,
lon_v: 0,
dx: 4_000_000,
dy: 5_000_000,
projection_center_flag: 0,
scanning_mode: 0b1100_0000,
latin1: 0,
latin2: 0,
lat_southern_pole: 0,
lon_southern_pole: 0,
});
assert_eq!(
albers.projected_x_coordinates().unwrap().unwrap(),
vec![-0.0, -4_000.0, -8_000.0]
);
assert_eq!(
albers.projected_y_coordinates().unwrap().unwrap(),
vec![0.0, 5_000.0]
);
}
#[test]
fn preserves_non_alternating_scan_modes_in_current_reader_order() {
for scanning_mode in [0b0000_0000, 0b1000_0000, 0b0100_0000, 0b1100_0000] {
let grid = LatLonGrid {
ni: 3,
nj: 2,
lat_first: 0,
lon_first: 0,
lat_last: 0,
lon_last: 0,
di: 1,
dj: 1,
scanning_mode,
};
let values = vec![1, 2, 3, 4, 5, 6];
assert_eq!(
grid.reorder_grib_scan_to_ndarray(values.clone()).unwrap(),
values
);
assert_eq!(
grid.reorder_ndarray_to_grib_scan(values.clone()).unwrap(),
values
);
}
}
#[test]
fn rejects_j_consecutive_scan_order() {
let grid = LatLonGrid {
ni: 3,
nj: 2,
lat_first: 0,
lon_first: 0,
lat_last: 0,
lon_last: 0,
di: 1,
dj: 1,
scanning_mode: 0b0010_0000,
};
let err = grid
.reorder_ndarray_to_grib_scan(vec![1, 2, 3, 4, 5, 6])
.unwrap_err();
assert!(matches!(
err,
crate::Error::UnsupportedScanningMode(0b0010_0000)
));
}
fn build_polar_stereographic_section(scanning_mode: u8) -> Vec<u8> {
let mut section = vec![0u8; 65];
section[..4].copy_from_slice(&65u32.to_be_bytes());
section[4] = 3;
section[6..10].copy_from_slice(&6u32.to_be_bytes());
section[12..14].copy_from_slice(&20u16.to_be_bytes());
section[14] = 6;
section[30..34].copy_from_slice(&3u32.to_be_bytes());
section[34..38].copy_from_slice(&2u32.to_be_bytes());
section[38..42].copy_from_slice(&encode_wmo_i32(41_612_949).unwrap());
section[42..46].copy_from_slice(&185_117_126u32.to_be_bytes());
section[46] = 0x08;
section[47..51].copy_from_slice(&encode_wmo_i32(60_000_000).unwrap());
section[51..55].copy_from_slice(&225_000_000u32.to_be_bytes());
section[55..59].copy_from_slice(&3_000_000u32.to_be_bytes());
section[59..63].copy_from_slice(&3_000_000u32.to_be_bytes());
section[64] = scanning_mode;
section
}
fn build_mercator_section(scanning_mode: u8) -> Vec<u8> {
let mut section = vec![0u8; 72];
section[..4].copy_from_slice(&72u32.to_be_bytes());
section[4] = 3;
section[6..10].copy_from_slice(&6u32.to_be_bytes());
section[12..14].copy_from_slice(&10u16.to_be_bytes());
section[14] = 6;
section[30..34].copy_from_slice(&3u32.to_be_bytes());
section[34..38].copy_from_slice(&2u32.to_be_bytes());
section[38..42].copy_from_slice(&encode_wmo_i32(-20_000_000).unwrap());
section[42..46].copy_from_slice(&encode_wmo_i32(-100_000_000).unwrap());
section[46] = 0x08;
section[47..51].copy_from_slice(&encode_wmo_i32(0).unwrap());
section[51..55].copy_from_slice(&encode_wmo_i32(20_000_000).unwrap());
section[55..59].copy_from_slice(&encode_wmo_i32(-98_000_000).unwrap());
section[59] = scanning_mode;
section[64..68].copy_from_slice(&1_000_000u32.to_be_bytes());
section[68..72].copy_from_slice(&2_000_000u32.to_be_bytes());
section
}
fn build_lambert_section() -> Vec<u8> {
let mut section = vec![0u8; 81];
section[..4].copy_from_slice(&81u32.to_be_bytes());
section[4] = 3;
section[6..10].copy_from_slice(&6u32.to_be_bytes());
section[12..14].copy_from_slice(&30u16.to_be_bytes());
section[14] = 1;
section[16..20].copy_from_slice(&6_371_200u32.to_be_bytes());
section[30..34].copy_from_slice(&3u32.to_be_bytes());
section[34..38].copy_from_slice(&2u32.to_be_bytes());
section[38..42].copy_from_slice(&encode_wmo_i32(12_190_000).unwrap());
section[42..46].copy_from_slice(&226_541_000u32.to_be_bytes());
section[46] = 0x08;
section[47..51].copy_from_slice(&encode_wmo_i32(25_000_000).unwrap());
section[51..55].copy_from_slice(&265_000_000u32.to_be_bytes());
section[55..59].copy_from_slice(&2_539_703u32.to_be_bytes());
section[59..63].copy_from_slice(&2_539_703u32.to_be_bytes());
section[65..69].copy_from_slice(&encode_wmo_i32(25_000_000).unwrap());
section[69..73].copy_from_slice(&encode_wmo_i32(25_000_000).unwrap());
section[73..77].copy_from_slice(&encode_wmo_i32(-90_000_000).unwrap());
section
}
fn build_albers_section() -> Vec<u8> {
let mut section = vec![0u8; 81];
section[..4].copy_from_slice(&81u32.to_be_bytes());
section[4] = 3;
section[6..10].copy_from_slice(&6u32.to_be_bytes());
section[12..14].copy_from_slice(&31u16.to_be_bytes());
section[14] = 6;
section[30..34].copy_from_slice(&3u32.to_be_bytes());
section[34..38].copy_from_slice(&2u32.to_be_bytes());
section[38..42].copy_from_slice(&encode_wmo_i32(23_000_000).unwrap());
section[42..46].copy_from_slice(&240_000_000u32.to_be_bytes());
section[46] = 0x08;
section[47..51].copy_from_slice(&encode_wmo_i32(25_000_000).unwrap());
section[51..55].copy_from_slice(&265_000_000u32.to_be_bytes());
section[55..59].copy_from_slice(&4_000_000u32.to_be_bytes());
section[59..63].copy_from_slice(&5_000_000u32.to_be_bytes());
section[65..69].copy_from_slice(&encode_wmo_i32(29_500_000).unwrap());
section[69..73].copy_from_slice(&encode_wmo_i32(45_500_000).unwrap());
section[73..77].copy_from_slice(&encode_wmo_i32(-90_000_000).unwrap());
section
}
}