pub struct Band {
pub name: Option<String>,
pub common_name: Option<String>,
pub description: Option<String>,
pub center_wavelength: Option<f64>,
pub full_width_half_max: Option<f64>,
pub solar_illumination: Option<f64>,
}Expand description
Spectral bands in an Asset.
Fields§
§name: Option<String>The name of the band (e.g., “B01”, “B8”, “band2”, “red”).
common_name: Option<String>The name commonly used to refer to the band to make it easier to search for bands across instruments.
See the list of accepted common names.
description: Option<String>Description to fully explain the band.
CommonMark 0.29 syntax MAY be used for rich text representation.
center_wavelength: Option<f64>The center wavelength of the band, in micrometers (μm).
full_width_half_max: Option<f64>Full width at half maximum (FWHM).
The width of the band, as measured at half the maximum transmission, in micrometers (μm).
solar_illumination: Option<f64>The solar illumination of the band, as measured at half the maximum transmission, in W/m2/micrometers.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Band
impl<'de> Deserialize<'de> for Band
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Band
impl RefUnwindSafe for Band
impl Send for Band
impl Sync for Band
impl Unpin for Band
impl UnwindSafe for Band
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