pub struct Tile {
pub lat_lo: f64,
pub lon_lo: f64,
pub side: usize,
pub data: Vec<i16>,
}Expand description
A parsed single-degree SRTM tile.
Fields§
§lat_lo: f64Lower-left latitude of the tile, e.g. 44.0 for N44.
lon_lo: f64Lower-left longitude, e.g. -72.0 for W072.
side: usizeGrid side length (3601 or 1201).
data: Vec<i16>Row-major, north-up elevation samples in meters.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Tile
impl RefUnwindSafe for Tile
impl Send for Tile
impl Sync for Tile
impl Unpin for Tile
impl UnsafeUnpin for Tile
impl UnwindSafe for Tile
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more