[Liblas-commits] r997 - trunk/include/liblas
liblas-commits at liblas.org
liblas-commits at liblas.org
Wed Feb 4 21:43:20 EST 2009
Author: hobu
Date: Wed Feb 4 21:43:20 2009
New Revision: 997
URL: http://liblas.org/changeset/997
Log:
increment the point formats and point sizes for LAS 1.2 #91
Modified:
trunk/include/liblas/lasheader.hpp
Modified: trunk/include/liblas/lasheader.hpp
==============================================================================
--- trunk/include/liblas/lasheader.hpp (original)
+++ trunk/include/liblas/lasheader.hpp Wed Feb 4 21:43:20 2009
@@ -78,14 +78,20 @@
enum PointFormat
{
ePointFormat0 = 0, ///< Point Data Format \e 0
- ePointFormat1 = 1 ///< Point Data Format \e 1
+ ePointFormat1 = 1, ///< Point Data Format \e 1
+ ePointFormat2 = 2, ///< Point Data Format \e 2
+ ePointFormat3 = 3 ///< Point Data Format \e 3
+
};
/// Number of bytes of point record storage in particular format.
enum PointSize
{
ePointSize0 = 20, ///< Size of point record in data format \e 0
- ePointSize1 = 28 ///< Size of point record in data format \e 1
+ ePointSize1 = 28, ///< Size of point record in data format \e 1
+ ePointSize2 = 26, ///< Size of point record in data format \e 2
+ ePointSize3 = 32 ///< Size of point record in data format \e 3
+
};
/// Official signature of ASPRS LAS file format, always \b "LASF".
More information about the Liblas-commits
mailing list