Struct gdal_sys::OSRCRSInfo[][src]

#[repr(C)]
pub struct OSRCRSInfo { pub pszAuthName: *mut c_char, pub pszCode: *mut c_char, pub pszName: *mut c_char, pub eType: Type, pub bDeprecated: c_int, pub bBboxValid: c_int, pub dfWestLongitudeDeg: f64, pub dfSouthLatitudeDeg: f64, pub dfEastLongitudeDeg: f64, pub dfNorthLatitudeDeg: f64, pub pszAreaName: *mut c_char, pub pszProjectionMethod: *mut c_char, }

\brief Structure given overall description of a CRS.

This structure may grow over time, and should not be directly allocated by client code.

Fields

pszAuthName: *mut c_char

Authority name.

pszCode: *mut c_char

Object code.

pszName: *mut c_char

Object name.

eType: Type

Object type.

bDeprecated: c_int

Whether the object is deprecated

bBboxValid: c_int

Whereas the west_lon_degree, south_lat_degree, east_lon_degree and north_lat_degree fields are valid.

dfWestLongitudeDeg: f64

Western-most longitude of the area of use, in degrees.

dfSouthLatitudeDeg: f64

Southern-most latitude of the area of use, in degrees.

dfEastLongitudeDeg: f64

Eastern-most longitude of the area of use, in degrees.

dfNorthLatitudeDeg: f64

Northern-most latitude of the area of use, in degrees.

pszAreaName: *mut c_char

Name of the area of use.

pszProjectionMethod: *mut c_char

Name of the projection method for a projected CRS. Might be NULL even for projected CRS in some cases.

Trait Implementations

impl Clone for OSRCRSInfo[src]

impl Copy for OSRCRSInfo[src]

impl Debug for OSRCRSInfo[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.