Variable DEFAULT_VALUE_RANGESConst

DEFAULT_VALUE_RANGES: Record<DimensionName, {
    max?: number;
    min?: number;
}> = ...

Default min/max values for various LAS dimensions. Most default values are directly dependent on the data type of the dimension (e.g a Uint8 dimensions will have a default range of 0-255), but some dimensions have narrower min/max, for example ScanAngle:

// Get the default min/max for return number
const { min, max } = DEFAULT_VALUE_RANGES['ReturnNumber'];
// { min: 0, max: 8 }