pub struct Interpolation {
pub params: Box<InterpolationParameters>,
pub sources: Box<SingleRasterSource>,
pub type: Type,
}Expand description
Interpolation : The Interpolation operator increases raster resolution by interpolating values of an input raster. If queried with a resolution that is coarser than the input resolution, interpolation is not applicable and an error is returned. ## Inputs The Interpolation operator expects exactly one raster input.
Fields§
§params: Box<InterpolationParameters>§sources: Box<SingleRasterSource>§type: TypeImplementations§
Source§impl Interpolation
impl Interpolation
Sourcepub fn new(
params: InterpolationParameters,
sources: SingleRasterSource,
type: Type,
) -> Interpolation
pub fn new( params: InterpolationParameters, sources: SingleRasterSource, type: Type, ) -> Interpolation
The Interpolation operator increases raster resolution by interpolating values of an input raster. If queried with a resolution that is coarser than the input resolution, interpolation is not applicable and an error is returned. ## Inputs The Interpolation operator expects exactly one raster input.
Trait Implementations§
Source§impl Clone for Interpolation
impl Clone for Interpolation
Source§fn clone(&self) -> Interpolation
fn clone(&self) -> Interpolation
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Interpolation
impl Debug for Interpolation
Source§impl Default for Interpolation
impl Default for Interpolation
Source§fn default() -> Interpolation
fn default() -> Interpolation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for Interpolation
impl<'de> Deserialize<'de> for Interpolation
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
Source§impl PartialEq for Interpolation
impl PartialEq for Interpolation
Source§fn eq(&self, other: &Interpolation) -> bool
fn eq(&self, other: &Interpolation) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for Interpolation
impl Serialize for Interpolation
impl StructuralPartialEq for Interpolation
Auto Trait Implementations§
impl Freeze for Interpolation
impl RefUnwindSafe for Interpolation
impl Send for Interpolation
impl Sync for Interpolation
impl Unpin for Interpolation
impl UnsafeUnpin for Interpolation
impl UnwindSafe for Interpolation
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