Struct gdal_sys::GDALRPCInfo[][src]

#[repr(C)]
pub struct GDALRPCInfo {
Show 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,
}

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

Trait Implementations

impl Clone for GDALRPCInfo[src]

impl Copy for GDALRPCInfo[src]

impl Debug for GDALRPCInfo[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.