This repository has been archived by the owner on Mar 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.js
77 lines (70 loc) · 2.03 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
const path = require('path');
const _ = require("lodash");
const jsonfile = require("jsonfile");
const _Regionfile = path.join(__dirname, "Countries/Tanzania/Regions.json");
const _Wardsfile = path.join(__dirname, "Countries/Tanzania/Wards.json");
const _Districtfile = path.join(__dirname, "Countries/Tanzania/Districts.json");
exports.regions = function () {
try {
const data = jsonfile.readFileSync(_Regionfile)
let Regions = [];
_.forEach(data["features"], (regionObject) => {
Regions.push(regionObject["properties"]["region"]);
});
return Regions
} catch(err) {
console.error(err);
}
},
exports.alldistrict = function () {
try {
const data = jsonfile.readFileSync(_Districtfile);
let Districts = [];
_.forEach(data["features"], (regionObject) => {
Districts.push(regionObject["properties"]["District"]);
});
return Districts
} catch(err) {
console.error(err);
}
};
exports.districtsPerRegion = function (regionName) {
try {
const data = jsonfile.readFileSync(_Districtfile);
let DistrictsPerRegion = [];
_.forEach(data["features"], (regionObject) => {
if (regionObject["properties"]["region"] == regionName) {
DistrictsPerRegion.push(regionObject["properties"]["District"]);
}
});
return DistrictsPerRegion
} catch(err) {
console.error(err);
}
};
exports.allWards = function () {
try {
const data = jsonfile.readFileSync(_Wardsfile);
let wards = [];
_.forEach(data["features"], (districtObject) => {
wards.push(districtObject["properties"]["Ward"]);
});
return wards
} catch(err) {
console.error(err);
}
};
exports.wardsPerDistrict = function(district) {
try {
const data = jsonfile.readFileSync(_Wardsfile);
let wards = [];
_.forEach(data["features"], (districtObj) => {
if (districtObj.properties.District.toLowerCase().includes(district.toLowerCase())) {
wards.push(districtObj["properties"]["Ward"]);
}
});
return wards
} catch(err) {
console.log(err);
}
}