}
Range xRange = ranges.getFirst();
Range yRange = ranges.getSecond();
for (String tiploc : model.getTiplocsForStanox(stanox)) {
StationElement station = model.getStationForTiploc(tiploc);
if (station != null) {
writer.println(area + "," + style + "," + from + "," + to + ","
+ region + "," + stanox + "," + tiploc + "," + station.getLat()
+ "," + station.getLon() + "," + station.getName());
xRange.addValue(station.getEasting());
yRange.addValue(station.getNorthing());
}
}
}
Max<String> maxRange = new Max<String>();