Class LasCell
- java.lang.Object
-
- org.hortonmachine.gears.io.las.databases.LasCell
-
public class LasCell extends Object
A cell of las data.- Author:
- Andrea Antonello (www.hydrologis.com)
-
-
Field Summary
Fields Modifier and Type Field Description doubleavgElevshortavgIntensitybyte[]colorsThe array containing [r1, g1, b1, r2, g2, b2, ...] rgb info for stylings.byte[]gpsTimesThe array containing [gpsTime1, gpsTime2, ...] in amount of pointsCount.longidbyte[]intensitiesClassificationsThe array containing [intensities1, classification1, ...] in amount of pointsCount.doublemaxElevdoublemaxGpsTimeshortmaxIntensitydoubleminElevdoubleminGpsTimeshortminIntensityintpointsCountNumber of points in the cell.org.locationtech.jts.geom.PolygonpolygonThe cell bounds.byte[]returnsThe array containing [returnNumber1,numberOfReturns1,returnNumber2,numberOfReturns2,...] in amount of pointsCount.longsourceIdbyte[]xyzsThe byte array containing [x1,y1,z1,x2,y2,z2,...] in amount of pointsCount.
-
Constructor Summary
Constructors Constructor Description LasCell()
-
-
-
Field Detail
-
id
public long id
-
sourceId
public long sourceId
-
polygon
public org.locationtech.jts.geom.Polygon polygon
The cell bounds.
-
pointsCount
public int pointsCount
Number of points in the cell.
-
avgElev
public double avgElev
-
minElev
public double minElev
-
maxElev
public double maxElev
-
xyzs
public byte[] xyzs
The byte array containing [x1,y1,z1,x2,y2,z2,...] in amount of pointsCount.
-
avgIntensity
public short avgIntensity
-
minIntensity
public short minIntensity
-
maxIntensity
public short maxIntensity
-
intensitiesClassifications
public byte[] intensitiesClassifications
The array containing [intensities1, classification1, ...] in amount of pointsCount.
-
returns
public byte[] returns
The array containing [returnNumber1,numberOfReturns1,returnNumber2,numberOfReturns2,...] in amount of pointsCount.
-
minGpsTime
public double minGpsTime
-
maxGpsTime
public double maxGpsTime
-
gpsTimes
public byte[] gpsTimes
The array containing [gpsTime1, gpsTime2, ...] in amount of pointsCount.
-
colors
public byte[] colors
The array containing [r1, g1, b1, r2, g2, b2, ...] rgb info for stylings.
-
-