Reviewing the Manchester school data, I noticed a possible ambiguity with capacity and occupancy --- on a particular couple of lines these are switched. I'm not sure about the distinction between these two fields (we allocated schools based on enrolment statistics by gender, extending the Melbourne R-based workflow), but thought worth checking with you @CorinStaves / @Qinnnnn (hope things are all well with you, btw!) in case this could be an oversight:
|
int capacity = Integer.parseInt(lineElements[posOccupancy]); |
|
int occupancy = Integer.parseInt(lineElements[posCapacity]); |
Reviewing the Manchester school data, I noticed a possible ambiguity with capacity and occupancy --- on a particular couple of lines these are switched. I'm not sure about the distinction between these two fields (we allocated schools based on enrolment statistics by gender, extending the Melbourne R-based workflow), but thought worth checking with you @CorinStaves / @Qinnnnn (hope things are all well with you, btw!) in case this could be an oversight:
silo/useCases/manchester/src/main/java/de/tum/bgu/msm/io/SchoolReaderMCR.java
Lines 59 to 60 in ce00db2