Jump to content

Module:Shindo/data

Permanently protected module
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Awesome Aasim (talk | contribs) at 23:38, 6 April 2024 (Created page with 'local data = { --MMI and many other scales ["mmi"] = { name = "Modified Mercally Intensity Scale", id_prefix = "mmi-", short = "MMI ", ranks = { ["1"] = { id = 1, label = "I", }, ["2"] = { id = 2, label = "II" }, ["3"] = { id = 3, label = "III" }, ["4"] = { id = 4, label = "IV" }, ["5"] = { id = 5, label = "V" }, ["6"] = { id = 6, label = "VI" }, ["7"] = { i...'). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

local data = {
	--MMI and many other scales
	["mmi"] = {
		name = "Modified Mercally Intensity Scale",
		id_prefix = "mmi-",
		short = "MMI ",
		ranks = {
			["1"] = {
				id = 1,
				label = "I",
			},
			["2"] = {
				id = 2,
				label = "II"
			},
			["3"] = {
				id = 3,
				label = "III"
			},
			["4"] = {
				id = 4,
				label = "IV"
			},
			["5"] = {
				id = 5,
				label = "V"
			},
			["6"] = {
				id = 6,
				label = "VI"
			},
			["7"] = {
				id = 7,
				label = "VII"
			},
			["8"] = {
				id = 8,
				label = "VIII"
			},
			["9"] = {
				id = 9,
				label = "IX"
			},
			["10"] = {
				id = 10,
				label = "X"
			},
			["11"] = {
				id = 11,
				label = "XI"
			},
			["12"] = {
				id = 12,
				label = "XII"
			}
		}
	},
	-- JMA, CWA, etc.
	["jma"] = {
		name = "Japan Meteorological Agency seismic intensity scale",
		id_prefix = "jma_",
		short = "JMA",
		ranks = {
			["0"] = {
				id = 0,
				label = "JMA 0"
			},
			["1"] = {
				id = 1,
				label = "1"
			},
			["2"] = {
				id = 2,
				label = "2"
			},
			["3"] = {
				id = 3,
				label = "3"
			},
			["4"] = {
				id = 4,
				label = "4"
			},
			["5-"] = {
				id = "5-",
				label = "5−"
			},
			["5+"] = {
				id = "5+",
				label = "5+"
			},
			["5"] = {
				id = "5-",
				label = "5"
			},
			["6-"] = {
				id = "6-",
				label = "6−"
			},
			["6+"] = {
				id = "6+",
				label = "6+"
			},
			["6"] = {
				id = "6",
				label = "6"
			},
			["7"] = {
				id = 7,
				label = "7"
			}
		}
	}
}

return data