Closed davidxuang closed 9 months ago
Can confirm this issue.
Looks like nia swap id and codename (i,j) for odd faces. ex: PA03-Mike15 <=> PA12-Charlie15 (03=Charlie, 12=Mike)
Quick fix could be: https://github.com/IITC-CE/ingress-intel-total-conversion/blob/20f996d2e931d1e74a5dec280be120a7d13ffbc4/plugins/regions.js#L70
if (cell.face & 1) {
[regionI,regionJ] = [regionJ,regionI];
}
(+ some similar in search)
IITC currently gives such naming scheme for AS regions:
but the actual names given by Niantic are:
I'm guessing that it could be a problem imported from the S2 library, probably line 74 and line 106.