swu2coord function

List<int> swu2coord(
  1. String swuCoord
)

Implementation

List<int> swu2coord(String swuCoord) {
  return [swu2num(swuCoord.substring(0, 2)), swu2num(swuCoord.substring(2, 4))];
}