geonet
Version:
A Node.js API wrapper for GeoNet — Aotearoa's geological hazard monitoring system.
41 lines (40 loc) • 1.89 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Status = exports.Quality = exports.MMI = void 0;
var MMI;
(function (MMI) {
/** No data or unclassified intensity. */
MMI[MMI["Unknown"] = -1] = "Unknown";
/** Unnoticeable: Not felt at all. */
MMI[MMI["NotFelt"] = 0] = "NotFelt";
/** Unnoticeable: Barely sensed by a very few people. */
MMI[MMI["BarelyFelt"] = 1] = "BarelyFelt";
/** Unnoticeable: Felt indoors as a light vibration, no effect outdoors. */
MMI[MMI["SlightlyFelt"] = 2] = "SlightlyFelt";
/** Weak: Felt indoors as a light vibration, hanging objects may swing slightly. */
MMI[MMI["Weak"] = 3] = "Weak";
/** Light: Generally noticed indoors, moderate vibration or jolt, light sleepers may be awakened. */
MMI[MMI["Light"] = 4] = "Light";
/** Moderate: Felt outdoors and indoors, small objects may be shifted, some glassware may break. */
MMI[MMI["Moderate"] = 5] = "Moderate";
/** Strong: Felt by all, furniture and appliances may move, some non-structural building damage. */
MMI[MMI["Strong"] = 6] = "Strong";
/** Severe: Difficulty standing, significant damage to fragile or unsecured objects. */
MMI[MMI["Severe"] = 7] = "Severe";
/** Extreme: Alarm may approach panic, major structural damage, widespread destruction. */
MMI[MMI["Extreme"] = 8] = "Extreme";
})(MMI || (exports.MMI = MMI = {}));
var Quality;
(function (Quality) {
Quality["Best"] = "best";
Quality["Preliminary"] = "preliminary";
Quality["Automatic"] = "automatic";
Quality["Deleted"] = "deleted";
})(Quality || (exports.Quality = Quality = {}));
var Status;
(function (Status) {
Status["Automatic"] = "automatic";
Status["Reviewed"] = "reviewed";
Status["Duplicate"] = "duplicate";
Status["Deleted"] = "deleted";
})(Status || (exports.Status = Status = {}));