Struct las::Builder[][src]

pub struct Builder {
    pub date: Option<Date<Utc>>,
    pub file_source_id: u16,
    pub generating_software: String,
    pub gps_time_type: GpsTimeType,
    pub guid: Uuid,
    pub has_synthetic_return_numbers: bool,
    pub padding: Vec<u8>,
    pub point_format: Format,
    pub point_padding: Vec<u8>,
    pub system_identifier: String,
    pub transforms: Vector<Transform>,
    pub version: Version,
    pub vlr_padding: Vec<u8>,
    pub vlrs: Vec<Vlr>,
    pub evlrs: Vec<Vlr>,
    // some fields omitted
}

Builds headers.

Fields

date: Option<Date<Utc>>

The date of file creation.

file_source_id: u16

The file source id, sometimes the flight line.

generating_software: String

The software that created this file.

gps_time_type: GpsTimeType

The type of gps time, either week or standard.

guid: Uuid

A globally unique identifier.

has_synthetic_return_numbers: bool

Are the return numbers in this file syntheetic?

padding: Vec<u8>

Bytes after the header but before the vlrs.

point_format: Format

The format that the points will be written in.

point_padding: Vec<u8>

The bytes after the points but before any evlrs.

Discouraged.

system_identifier: String

The system that generated the points.

transforms: Vector<Transform>

The scale and offset that will be used to convert coordinates to i16s to write in the file.

version: Version

The las version.

vlr_padding: Vec<u8>

The bytes after the vlrs but before the points.

vlrs: Vec<Vlr>

The variable length records.

evlrs: Vec<Vlr>

The extended variable length records.

Implementations

impl Builder[src]

pub fn new(raw_header: Header) -> Result<Builder>[src]

Creates a new builder from a raw header.

Examples

use las::Builder;
let builder = Builder::new(Default::default()).unwrap();

pub fn into_header(mut self: Self) -> Result<Header>[src]

Converts this builder into a Header.

Examples

use las::Builder;
let header = Builder::new(Default::default()).unwrap().into_header().unwrap();

Trait Implementations

impl Clone for Builder[src]

impl Debug for Builder[src]

impl Default for Builder[src]

impl From<Header> for Builder[src]

impl<V: Into<Version>> From<V> for Builder[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.