Struct pasture_io::las::LASMetadata[][src]

pub struct LASMetadata { /* fields omitted */ }

Metadata implementation for LAS/LAZ files

Implementations

impl LASMetadata[src]

pub fn new(bounds: AABB<f64>, point_count: usize, point_format: u8) -> Self[src]

Creates a new LASMetadata from the given parameters


let min = Point3::new(0.0, 0.0, 0.0);
let max = Point3::new(1.0, 1.0, 1.0);
let metadata = LASMetadata::new(AABB::from_min_max(min, max), 1024, 0);

pub fn point_count(&self) -> usize[src]

Returns the number of points for the associated LASMetadata

pub fn point_format(&self) -> u8[src]

Returns the LAS point format for the associated LASMetadata

pub fn raw_las_header(&self) -> Option<&Header>[src]

Returns the raw LAS header for the associated LASMetadata. This value is only present if the associated LASMetadata was created from a raw LAS header

Trait Implementations

impl Clone for LASMetadata[src]

impl Debug for LASMetadata[src]

impl Display for LASMetadata[src]

impl From<&'_ Header> for LASMetadata[src]

impl From<Header> for LASMetadata[src]

impl Metadata for LASMetadata[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> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,