Struct gdal_sys::GDALRPCInfoV2

source ·
#[repr(C)]
pub struct GDALRPCInfoV2 {
Show 20 fields pub dfLINE_OFF: f64, pub dfSAMP_OFF: f64, pub dfLAT_OFF: f64, pub dfLONG_OFF: f64, pub dfHEIGHT_OFF: f64, pub dfLINE_SCALE: f64, pub dfSAMP_SCALE: f64, pub dfLAT_SCALE: f64, pub dfLONG_SCALE: f64, pub dfHEIGHT_SCALE: f64, pub adfLINE_NUM_COEFF: [f64; 20], pub adfLINE_DEN_COEFF: [f64; 20], pub adfSAMP_NUM_COEFF: [f64; 20], pub adfSAMP_DEN_COEFF: [f64; 20], pub dfMIN_LONG: f64, pub dfMIN_LAT: f64, pub dfMAX_LONG: f64, pub dfMAX_LAT: f64, pub dfERR_BIAS: f64, pub dfERR_RAND: f64,
}
Expand description

Structure to store Rational Polynomial Coefficients / Rigorous Projection Model. See http://geotiff.maptools.org/rpc_prop.html

Fields§

§dfLINE_OFF: f64

< Line offset

§dfSAMP_OFF: f64

< Sample/Pixel offset

§dfLAT_OFF: f64

< Latitude offset

§dfLONG_OFF: f64

< Longitude offset

§dfHEIGHT_OFF: f64

< Height offset

§dfLINE_SCALE: f64

< Line scale

§dfSAMP_SCALE: f64

< Sample/Pixel scale

§dfLAT_SCALE: f64

< Latitude scale

§dfLONG_SCALE: f64

< Longitude scale

§dfHEIGHT_SCALE: f64

< Height scale

§adfLINE_NUM_COEFF: [f64; 20]

< Line Numerator Coefficients

§adfLINE_DEN_COEFF: [f64; 20]

< Line Denominator Coefficients

§adfSAMP_NUM_COEFF: [f64; 20]

< Sample/Pixel Numerator Coefficients

§adfSAMP_DEN_COEFF: [f64; 20]

< Sample/Pixel Denominator Coefficients

§dfMIN_LONG: f64

< Minimum longitude

§dfMIN_LAT: f64

< Minimum latitude

§dfMAX_LONG: f64

< Maximum longitude

§dfMAX_LAT: f64

< Maximum latitude

§dfERR_BIAS: f64

< Bias error

§dfERR_RAND: f64

< Random error

Trait Implementations§

source§

impl Clone for GDALRPCInfoV2

source§

fn clone(&self) -> GDALRPCInfoV2

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for GDALRPCInfoV2

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Copy for GDALRPCInfoV2

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.