/** @packageDocumentation * @module OrbitGT */ declare type float64 = number; import { AttributeValue } from "./AttributeValue"; import { PointAttribute } from "./PointAttribute"; /** * Class StandardAttributes defines some common attributes for pointclouds. * * @version 1.0 October 2013 */ /** @internal */ export declare class StandardAttributes { /** The standard "color" attribute */ static readonly COLOR: PointAttribute; /** The standard "intensity" attribute */ static readonly INTENSITY: PointAttribute; /** The standard "gps-time" attribute */ static readonly GPS_TIME: PointAttribute; /** The standard "weight" attribute */ static readonly WEIGHT: PointAttribute; /** The standard "clearance" attribute */ static readonly CLEARANCE: PointAttribute; /** The standard "rutting" attribute */ static readonly RUTTING: PointAttribute; /** The standard "color-by" attribute */ static readonly COLOR_BY: PointAttribute; /** The default "gps-time" attribute value */ static readonly DEFAULT_GPS_TIME: AttributeValue; /** The "adjusted" gps time offset (The offset moves the time back to near zero to improve floating point resolution). See the "GPS Time Type" field in "LAS SPECIFICATION VERSION 1.3" */ static readonly GPS_TIME_OFFSET: float64; /** The number of seconds in a week (7*24*3600) */ static readonly GPS_WEEK_SECONDS: float64; /** * No instances. */ private constructor(); } export {}; //# sourceMappingURL=StandardAttributes.d.ts.map