@dra2020/district-analytics 8.2.3 → 8.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +14 -13
- package/dist/cli.js.map +1 -1
- package/dist/district-analytics.js +2 -6
- package/dist/district-analytics.js.map +1 -1
- package/dist/src/results.d.ts +2 -1
- package/package.json +3 -3
|
@@ -1981,13 +1981,9 @@ function scorePlan(s, p, bLog = false, overridesJSON) {
|
|
|
1981
1981
|
// Add minority notes
|
|
1982
1982
|
scorecard.minority.details['majorityMinority'] = M.getMajorityMinority(s);
|
|
1983
1983
|
scorecard.minority.details['vraPreclearance'] = M.getVRASection5(s);
|
|
1984
|
-
// TODO - KIWYSI
|
|
1985
1984
|
// Add KIWYSI compactness score
|
|
1986
|
-
|
|
1987
|
-
|
|
1988
|
-
const kiwysiScore = C.scoreKIWYSICompactness(s, bLog);
|
|
1989
|
-
scorecard.compactness.details['kiwysi'] = kiwysiScore;
|
|
1990
|
-
}
|
|
1985
|
+
const kiwysiScore = C.scoreKIWYSICompactness(s, bLog);
|
|
1986
|
+
scorecard.compactness.details['kiwysi'] = kiwysiScore;
|
|
1991
1987
|
return scorecard;
|
|
1992
1988
|
}
|
|
1993
1989
|
exports.scorePlan = scorePlan;
|