stac 0.16.5

Rust library for the SpatioTemporal Asset Catalog (STAC) specification
Documentation
use crate::{DataType, Statistics};
use serde::{Deserialize, Serialize};
use serde_json::{Map, Value};

/// Bands are used to describe the available bands in a STAC entity or Asset.
///
/// A band describes the general construct of a band or layer, which doesn't
/// necessarily need to be a spectral band. By adding fields from extensions you
/// can indicate that a band, for example, is
///
/// - a spectral band (EO extension),
/// - a band with classification results (classification extension),
/// - a band with quality information such as cloud cover probabilities,
///
/// etc.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
pub struct Band {
    /// The name of the band (e.g., "B01", "B8", "band2", "red"), which should
    /// be unique across all bands defined in the list of bands.
    ///
    /// This is typically the name the data provider uses for the band.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,

    /// Description to fully explain the band.
    ///
    /// CommonMark 0.29 syntax MAY be used for rich text representation.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,

    /// Value used to identify no-data.
    ///
    /// The extension specifies that this can be a number or a string, but we
    /// just use a f64 with a custom (de)serializer.
    ///
    /// TODO write custom (de)serializer.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub nodata: Option<f64>,

    /// The data type of the values.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub data_type: Option<DataType>,

    /// Statistics of all the values.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub statistics: Option<Statistics>,

    /// Unit of measurement of the value.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub unit: Option<String>,

    /// Additional fields on the asset.
    #[serde(flatten)]
    pub additional_fields: Map<String, Value>,
}