/* =============================================================================== FILE: vlr.hpp CONTENTS: LAZ vlr PROGRAMMERS: martin.isenburg@rapidlasso.com - http://rapidlasso.com uday.karan@gmail.com - Hobu, Inc. COPYRIGHT: (c) 2007-2014, martin isenburg, rapidlasso - tools to catch reality (c) 2014, Uday Verma, Hobu, Inc. This is free software; you can redistribute and/or modify it under the terms of the Apache Public License 2.0 published by the Apache Software Foundation. See the COPYING file for more information. This software is distributed WITHOUT ANY WARRANTY and without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. CHANGE HISTORY: =============================================================================== */ #pragma once #include #include #include "lazperf.hpp" namespace lazperf { struct LAZPERF_EXPORT vlr_header { uint16_t reserved; std::string user_id; // 16 chars max uint16_t record_id; uint16_t data_length; std::string description; // 32 chars max static vlr_header create(std::istream& in); void read(std::istream& in); void write(std::ostream& out) const; void fill(const char *buf, size_t bufsize); std::vector data() const; static const int Size; }; struct LAZPERF_EXPORT evlr_header { uint16_t reserved; std::string user_id; // 16 chars max uint16_t record_id; uint64_t data_length; std::string description; // 32 chars max static evlr_header create(std::istream& in); void read(std::istream& in); void write(std::ostream& out) const; void fill(const char *buf, size_t bufsize); std::vector data() const; static const int Size; }; struct vlr_index_rec { std::string user_id; // 16 chars max uint16_t record_id; uint64_t data_length; std::string description; // 32 chars max uint64_t byte_offset; vlr_index_rec(const vlr_header& h, uint64_t byte_offset); vlr_index_rec(const evlr_header& h, uint64_t byte_offset); }; struct LAZPERF_EXPORT vlr { public: virtual ~vlr(); virtual uint64_t size() const = 0; virtual vlr_header header() const = 0; virtual evlr_header eheader() const = 0; }; struct LAZPERF_EXPORT laz_vlr : public vlr { public: struct LAZPERF_EXPORT laz_item { uint16_t type; uint16_t size; uint16_t version; }; uint16_t compressor; uint16_t coder; uint8_t ver_major; uint8_t ver_minor; uint16_t revision; uint32_t options; uint32_t chunk_size; uint64_t num_points; uint64_t num_bytes; std::vector items; laz_vlr(); laz_vlr(int format, int ebCount, uint32_t chunksize); virtual ~laz_vlr(); static laz_vlr create(std::istream& in); bool valid() const; void read(std::istream& in); void write(std::ostream& out) const; void fill(const char *buf, size_t bufsize); std::vector data() const; virtual uint64_t size() const; virtual vlr_header header() const; virtual evlr_header eheader() const; laz_vlr(const char *vlrdata); }; struct LAZPERF_EXPORT eb_vlr : public vlr { public: struct LAZPERF_EXPORT ebfield { uint8_t reserved[2]; uint8_t data_type; uint8_t options; std::string name; uint8_t unused[4]; double no_data[3]; double minval[3]; double maxval[3]; double scale[3]; double offset[3]; std::string description; ebfield(); }; std::vector items; eb_vlr(); eb_vlr(int ebCount); virtual ~eb_vlr(); static eb_vlr create(std::istream& in, int byteSize); void read(std::istream& in, int byteSize); void write(std::ostream& out) const; void fill(const char *buf, size_t bufsize); std::vector data() const; virtual uint64_t size() const; virtual vlr_header header() const; virtual evlr_header eheader() const; void addField(); void addField(const ebfield& f); }; struct LAZPERF_EXPORT wkt_vlr : public vlr { public: std::string wkt; wkt_vlr(); wkt_vlr(const std::string& s); virtual ~wkt_vlr(); static wkt_vlr create(std::istream& in, int byteSize); void read(std::istream& in, int byteSize); void write(std::ostream& out) const; void fill(const char *buf, size_t bufsize); std::vector data() const; virtual uint64_t size() const; virtual vlr_header header() const; virtual evlr_header eheader() const; }; struct LAZPERF_EXPORT copc_info_vlr : public vlr { public: double center_x; double center_y; double center_z; double halfsize; double spacing; uint64_t root_hier_offset; uint64_t root_hier_size; double gpstime_minimum; double gpstime_maximum; uint64_t reserved[11] {0}; copc_info_vlr(); virtual ~copc_info_vlr(); static copc_info_vlr create(std::istream& in); void read(std::istream& in); void write(std::ostream& out) const; void fill(const char *buf, size_t bufsize); std::vector data() const; virtual uint64_t size() const; virtual vlr_header header() const; virtual evlr_header eheader() const; }; } // namesapce lazperf