wxbox/crates/grib2/src/wgs84.rs

6 lines
90 B
Rust
Raw Normal View History

2025-01-01 19:53:23 -05:00
#[derive(Debug, Copy, Clone)]
pub struct LatLong {
pub lat: f64,
2025-03-04 20:51:33 -05:00
pub long: f64,
}