پرش به محتوا

پودمان:AlborzInfoBox/Data/Geography

از ویکی البرز
نسخهٔ تاریخ ‏۲ ژوئیهٔ ۲۰۲۶، ساعت ۰۳:۱۵ توسط Modir (بحث | مشارکت‌ها) (صفحه‌ای تازه حاوی «-------------------------------------------------------------------------------- -- Module:InfoBox/Data/Geography -- Wiki Alborz -- Static data -------------------------------------------------------------------------------- local data = {} -------------------------------------------------------------------------------- -- Field definitions -------------------------------------------------------------------------------- data.fields...» ایجاد کرد)
(تفاوت) → نسخهٔ قدیمی‌تر | نمایش نسخهٔ فعلی (تفاوت) | نسخهٔ جدیدتر ← (تفاوت)

توضیحات این پودمان می‌تواند در پودمان:AlborzInfoBox/Data/Geography/توضیحات قرار گیرد.

--------------------------------------------------------------------------------
-- Module:InfoBox/Data/Geography
-- Wiki Alborz
-- Static data
--------------------------------------------------------------------------------

local data = {}

--------------------------------------------------------------------------------
-- Field definitions
--------------------------------------------------------------------------------

data.fields = {

    country = {
        label = "کشور",
        parameter = false,
        default = "ایران"
    },

    province = {
        label = "استان",
        parameter = "استان",
        default = "البرز"
    },

    county = {
        label = "شهرستان",
        parameter = "شهرستان"
    },

    district = {
        label = "بخش",
        parameter = "بخش"
    },

    ruraldistrict = {
        label = "دهستان",
        parameter = "دهستان"
    },

    city = {
        label = "شهر",
        parameter = "شهر"
    },

    capital = {
        label = "مرکز",
        parameter = "مرکز"
    },

    population = {
        label = "جمعیت",
        parameter = "جمعیت"
    },

    area = {
        label = "مساحت",
        parameter = "مساحت"
    },

    elevation = {
        label = "ارتفاع",
        parameter = "ارتفاع"
    },

    mayor = {
        label = "شهردار",
        parameter = "شهردار"
    },

    phone = {
        label = "پیش‌شماره",
        parameter = "پیش‌شماره"
    },

    plate = {
        label = "پلاک خودرو",
        parameter = "پلاک خودرو"
    },

    website = {
        label = "وبگاه",
        parameter = "وبگاه"
    },

    footnotes = {
        label = "پانویس",
        parameter = "پانویس"
    },

    mountainrange = {
        label = "رشته‌کوه",
        parameter = "رشته‌کوه"
    },

    waterfallheight = {
        label = "ارتفاع آبشار",
        parameter = "ارتفاع آبشار"
    },

    river = {
        label = "رودخانه",
        parameter = "رودخانه"
    },

    source = {
        label = "سرچشمه",
        parameter = "سرچشمه"
    },

    mouth = {
        label = "ریزشگاه",
        parameter = "ریزشگاه"
    },

    length = {
        label = "طول",
        parameter = "طول"
    },

    depth = {
        label = "عمق",
        parameter = "عمق"
    },

    established = {
        label = "سال تأسیس",
        parameter = "سال تأسیس"
    }

}

--------------------------------------------------------------------------------
-- Layouts
--------------------------------------------------------------------------------

data.layouts = {}

--------------------------------------------------------------------------------
-- City
--------------------------------------------------------------------------------

data.layouts.city = {
    "country",
    "province",
    "county",
    "district",
    "population",
    "area",
    "elevation",
    "mayor",
    "phone",
    "plate",
    "website",
    "footnotes"
}

--------------------------------------------------------------------------------
-- Village
--------------------------------------------------------------------------------

data.layouts.village = {
    "country",
    "province",
    "county",
    "district",
    "ruraldistrict",
    "population",
    "elevation",
    "website",
    "footnotes"
}

--------------------------------------------------------------------------------
-- County
--------------------------------------------------------------------------------

data.layouts.county = {
    "country",
    "province",
    "capital",
    "population",
    "area",
    "website",
    "footnotes"
}

--------------------------------------------------------------------------------
-- District
--------------------------------------------------------------------------------

data.layouts.district = {
    "country",
    "province",
    "county",
    "capital",
    "population",
    "website",
    "footnotes"
}

--------------------------------------------------------------------------------
-- Rural district
--------------------------------------------------------------------------------

data.layouts.ruraldistrict = {
    "country",
    "province",
    "county",
    "district",
    "capital",
    "population",
    "website",
    "footnotes"
}

--------------------------------------------------------------------------------
-- Neighborhood
--------------------------------------------------------------------------------

data.layouts.neighborhood = {
    "city",
    "population",
    "website",
    "footnotes"
}

--------------------------------------------------------------------------------
-- Mountain
--------------------------------------------------------------------------------

data.layouts.mountain = {
    "province",
    "county",
    "elevation",
    "mountainrange",
    "footnotes"
}

--------------------------------------------------------------------------------
-- Cave
--------------------------------------------------------------------------------

data.layouts.cave = {
    "province",
    "county",
    "length",
    "depth",
    "footnotes"
}

--------------------------------------------------------------------------------
-- Waterfall
--------------------------------------------------------------------------------

data.layouts.waterfall = {
    "province",
    "county",
    "river",
    "waterfallheight",
    "footnotes"
}

--------------------------------------------------------------------------------
-- River
--------------------------------------------------------------------------------

data.layouts.river = {
    "province",
    "length",
    "source",
    "mouth",
    "footnotes"
}

--------------------------------------------------------------------------------
-- Park
--------------------------------------------------------------------------------

data.layouts.park = {
    "province",
    "county",
    "area",
    "established",
    "website",
    "footnotes"
}

--------------------------------------------------------------------------------

return data