updated coordinates file path

This commit is contained in:
Luis Aleixo 2021-08-20 14:07:30 +02:00
parent 26231a4353
commit 8fe4825a11

View file

@ -18,8 +18,7 @@ def location_to_weather_stn(location_loc):
long = []
station_array = []
fixed_delimits = [0, 12, 13, 44, 51, 60, 69, 90, 91]
station_file = Path(
os.getcwd()+'/cara/hadisd_station_fullinfo_v311_202001p.txt')
station_file = Path('/cara/hadisd_station_fullinfo_v311_202001p.txt')
for line in station_file.open('rt'):
start_end_positions = zip(fixed_delimits[:-1], fixed_delimits[1:])