geonet
Version:
A Node.js API wrapper for GeoNet — Aotearoa's geological hazard monitoring system.
49 lines (48 loc) • 2.19 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.QuakeIntensity = exports.VolcanoLevel = exports.VolcanoAviationColourCode = exports.VolcanoID = void 0;
/*
Types relating to both volcano endpoint requests and responses.
*/
var VolcanoID;
(function (VolcanoID) {
VolcanoID["Taup\u014D"] = "taupo";
VolcanoID["Tongariro"] = "tongariro";
VolcanoID["AucklandVolcanicField"] = "aucklandvolcanicfield";
VolcanoID["KermadecIslands"] = "kermadecislands";
VolcanoID["MayorIsland"] = "mayorisland";
VolcanoID["Ng\u0101uruhoe"] = "ngauruhoe";
VolcanoID["Northland"] = "northland";
VolcanoID["\u014Ckataina"] = "okataina";
VolcanoID["Rotorua"] = "rotorua";
VolcanoID["TaranakiMaunga"] = "taranakiegmont";
VolcanoID["WhiteIsland"] = "whiteisland";
VolcanoID["Ruapehu"] = "ruapehu";
})(VolcanoID || (exports.VolcanoID = VolcanoID = {}));
/*
Types relating to volcano endpoint responses.
*/
var VolcanoAviationColourCode;
(function (VolcanoAviationColourCode) {
VolcanoAviationColourCode["Green"] = "Green";
VolcanoAviationColourCode["Orange"] = "Orange";
VolcanoAviationColourCode["Red"] = "Red";
})(VolcanoAviationColourCode || (exports.VolcanoAviationColourCode = VolcanoAviationColourCode = {}));
var VolcanoLevel;
(function (VolcanoLevel) {
VolcanoLevel[VolcanoLevel["NoUnrest"] = 0] = "NoUnrest";
VolcanoLevel[VolcanoLevel["MinorUnrest"] = 1] = "MinorUnrest";
VolcanoLevel[VolcanoLevel["ModerateUnrest"] = 2] = "ModerateUnrest";
VolcanoLevel[VolcanoLevel["MinorEruption"] = 3] = "MinorEruption";
VolcanoLevel[VolcanoLevel["ModerateEruption"] = 4] = "ModerateEruption";
VolcanoLevel[VolcanoLevel["MajorEruption"] = 5] = "MajorEruption";
})(VolcanoLevel || (exports.VolcanoLevel = VolcanoLevel = {}));
var QuakeIntensity;
(function (QuakeIntensity) {
QuakeIntensity["Unnoticeable"] = "unnoticeable";
QuakeIntensity["Weak"] = "weak";
QuakeIntensity["Light"] = "light";
QuakeIntensity["Moderate"] = "moderate";
QuakeIntensity["Strong"] = "strong";
QuakeIntensity["Severe"] = "severe";
})(QuakeIntensity || (exports.QuakeIntensity = QuakeIntensity = {}));