geoengine-api-client 0.9.1

No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
Documentation
/*
 * Geo Engine API
 *
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * Contact: dev@geoengine.de
 * Generated by: https://openapi-generator.tech
 */

use crate::models;
use serde::{Deserialize, Serialize};

/// RasterVectorJoin : The `RasterVectorJoin` operator allows combining a single vector input and multiple raster inputs. For each raster input, a new column is added to the collection from the vector input. The new column contains the value of the raster at the location of the vector feature. For features covering multiple pixels like `MultiPoints` or `MultiPolygons`, the value is calculated using an aggregation function selected by the user. The same is true if the temporal extent of a vector feature covers multiple raster time steps. More details are described below.  **Example**: You have a collection of agricultural fields (`Polygons`) and a collection of raster images containing each pixel's monthly NDVI value. For your application, you want to know the NDVI value of each field. The `RasterVectorJoin` operator allows you to combine the vector and raster data and offers multiple spatial and temporal aggregation strategies. For example, you can use the `first` aggregation function to get the NDVI value of the first pixel that intersects with each field. This is useful for exploratory analysis since the computation is very fast. To calculate the mean NDVI value of all pixels that intersect with the field you should use the `mean` aggregation function. Since the NDVI data is a monthly time series, you have to specify the temporal aggregation function as well. The default is `none` which will create a new feature for each month. Other options are `first` and `mean` which will calculate the first or mean NDVI value for each field over time.  ## Inputs  The `RasterVectorJoin` operator expects one _vector_ input and one or more _raster_ inputs.  | Parameter | Type                                | | --------- | ----------------------------------- | | `sources` | `SingleVectorMultipleRasterSources` |  ## Errors  If the length of `names` is not equal to the number of raster inputs, an error is thrown. 
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct RasterVectorJoin {
    #[serde(rename = "params")]
    pub params: Box<models::RasterVectorJoinParameters>,
    #[serde(rename = "sources")]
    pub sources: Box<models::SingleVectorMultipleRasterSources>,
    #[serde(rename = "type")]
    pub r#type: Type,
}

impl RasterVectorJoin {
    /// The `RasterVectorJoin` operator allows combining a single vector input and multiple raster inputs. For each raster input, a new column is added to the collection from the vector input. The new column contains the value of the raster at the location of the vector feature. For features covering multiple pixels like `MultiPoints` or `MultiPolygons`, the value is calculated using an aggregation function selected by the user. The same is true if the temporal extent of a vector feature covers multiple raster time steps. More details are described below.  **Example**: You have a collection of agricultural fields (`Polygons`) and a collection of raster images containing each pixel's monthly NDVI value. For your application, you want to know the NDVI value of each field. The `RasterVectorJoin` operator allows you to combine the vector and raster data and offers multiple spatial and temporal aggregation strategies. For example, you can use the `first` aggregation function to get the NDVI value of the first pixel that intersects with each field. This is useful for exploratory analysis since the computation is very fast. To calculate the mean NDVI value of all pixels that intersect with the field you should use the `mean` aggregation function. Since the NDVI data is a monthly time series, you have to specify the temporal aggregation function as well. The default is `none` which will create a new feature for each month. Other options are `first` and `mean` which will calculate the first or mean NDVI value for each field over time.  ## Inputs  The `RasterVectorJoin` operator expects one _vector_ input and one or more _raster_ inputs.  | Parameter | Type                                | | --------- | ----------------------------------- | | `sources` | `SingleVectorMultipleRasterSources` |  ## Errors  If the length of `names` is not equal to the number of raster inputs, an error is thrown. 
    pub fn new(params: models::RasterVectorJoinParameters, sources: models::SingleVectorMultipleRasterSources, r#type: Type) -> RasterVectorJoin {
        RasterVectorJoin {
            params: Box::new(params),
            sources: Box::new(sources),
            r#type,
        }
    }
}
/// 
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum Type {
    #[serde(rename = "RasterVectorJoin")]
    RasterVectorJoin,
}

impl Default for Type {
    fn default() -> Type {
        Self::RasterVectorJoin
    }
}