پودمان:GeoBox/Data
توضیحات این پودمان میتواند در پودمان:GeoBox/Data/توضیحات قرار گیرد.
--------------------------------------------------------------------------------
-- Module:GeoBox/Data
-- Wiki Alborz
-- Static configuration for GeoBox
--------------------------------------------------------------------------------
local data = {}
--------------------------------------------------------------------------------
-- Labels
--------------------------------------------------------------------------------
data.labels = {
country = "کشور",
province = "استان",
county = "شهرستان",
district = "بخش",
ruraldistrict = "دهستان",
city = "شهر",
capital = "مرکز",
population = "جمعیت",
area = "مساحت",
elevation = "ارتفاع",
mayor = "شهردار",
phone = "پیششماره",
plate = "پلاک خودرو",
website = "وبگاه",
footnotes = "پانویس",
mountainrange = "رشتهکوه",
waterfallheight= "ارتفاع آبشار",
river = "رودخانه",
source = "سرچشمه",
mouth = "ریزشگاه",
length = "طول",
depth = "عمق",
established = "سال تأسیس"
}
--------------------------------------------------------------------------------
-- Row order
--------------------------------------------------------------------------------
data.types = {}
--------------------------------------------------------------------------------
-- City
--------------------------------------------------------------------------------
data.types.city = {
"country",
"province",
"county",
"district",
"population",
"area",
"elevation",
"mayor",
"phone",
"plate",
"website",
"footnotes"
}
--------------------------------------------------------------------------------
-- Village
--------------------------------------------------------------------------------
data.types.village = {
"country",
"province",
"county",
"district",
"ruraldistrict",
"population",
"elevation",
"website",
"footnotes"
}
--------------------------------------------------------------------------------
-- County
--------------------------------------------------------------------------------
data.types.county = {
"country",
"province",
"capital",
"population",
"area",
"website",
"footnotes"
}
--------------------------------------------------------------------------------
-- District
--------------------------------------------------------------------------------
data.types.district = {
"country",
"province",
"county",
"capital",
"population",
"website",
"footnotes"
}
--------------------------------------------------------------------------------
-- Rural District
--------------------------------------------------------------------------------
data.types.ruraldistrict = {
"country",
"province",
"county",
"district",
"capital",
"population",
"website",
"footnotes"
}
--------------------------------------------------------------------------------
-- Neighborhood
--------------------------------------------------------------------------------
data.types.neighborhood = {
"city",
"population",
"website",
"footnotes"
}
--------------------------------------------------------------------------------
-- Mountain
--------------------------------------------------------------------------------
data.types.mountain = {
"province",
"county",
"elevation",
"mountainrange",
"footnotes"
}
--------------------------------------------------------------------------------
-- Cave
--------------------------------------------------------------------------------
data.types.cave = {
"province",
"county",
"length",
"depth",
"footnotes"
}
--------------------------------------------------------------------------------
-- Waterfall
--------------------------------------------------------------------------------
data.types.waterfall = {
"province",
"county",
"river",
"waterfallheight",
"footnotes"
}
--------------------------------------------------------------------------------
-- River
--------------------------------------------------------------------------------
data.types.river = {
"province",
"length",
"source",
"mouth",
"footnotes"
}
--------------------------------------------------------------------------------
-- Park
--------------------------------------------------------------------------------
data.types.park = {
"province",
"county",
"area",
"established",
"website",
"footnotes"
}
--------------------------------------------------------------------------------
return data