gis-tools-ts
Version:
A collection of geospatial tools primarily designed for WGS84, Web Mercator, and S2.
26 lines • 518 B
JavaScript
/** Enum representing the LAZ Item type */
export const LAZHeaderItemType = {
BYTE: 0,
SHORT: 1,
INT: 2,
LONG: 3,
FLOAT: 4,
DOUBLE: 5,
POINT10: 6,
GPSTIME11: 7,
RGB12: 8,
WAVEPACKET13: 9,
POINT14: 10,
RGB14: 11,
RGBNIR14: 12,
WAVEPACKET14: 13,
BYTE14: 14,
};
/** Enum representing the LAZ Item type */
export const LAZCompressor = {
NONE: 0,
POINTWISE: 1,
POINTWISE_AND_CHUNKED: 2,
LAYERED_AND_CHUNKED: 3,
};
//# sourceMappingURL=types.js.map