diff --git a/read_stationlist.py b/read_stationlist.py new file mode 100644 index 0000000..29b5cba --- /dev/null +++ b/read_stationlist.py @@ -0,0 +1,16 @@ +# -*- coding: utf-8 -*- +""" +Created on Fri Aug 28 10:59:33 2015 + +@author: Wood +""" + +def read_stationlist() + f = open('stationList.txt', 'r') + stations= f.readlines() + stationsL = [] + for i in range(len(stations)): + stationsL.append(stations[i].strip('\n')) + + return stationsL +