generated from CambridgeEngineering/PartIA-Flood-Warning-System
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Task2A.py
33 lines (25 loc) · 1.01 KB
/
Task2A.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Copyright (C) 2018 Garth N. Wells
#
# SPDX-License-Identifier: MIT
from floodsystem.stationdata import build_station_list, update_water_levels
def run():
# Build list of stations
stations = build_station_list()
# Update latest level data for all stations
update_water_levels(stations)
# Print station and latest level for first 5 stations in list
names = [
'Bourton Dickler', 'Surfleet Sluice', 'Gaw Bridge', 'Hemingford',
'Swindon'
]
for station in stations:
if station.name in names:
print("Station name and current level: {}, {}".format(
station.name, station.latest_level))
# Alternative implementation
# for station in [s for s in stations if s.name in names]:
# print("Station name and current level: {}, {}".format(station.name,
# station.latest_level))
if __name__ == "__main__":
print("*** Task 2A: CUED Part IA Flood Warning System ***")
run()