Generator of stations data as lists
Yields: List<String>: the data of every station around the world.
List<String>
Iterable<List<String>> getStation() sync* { for (var station in _stations) { yield station; } }