-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2024-tides.sh
executable file
·22 lines (19 loc) · 1005 Bytes
/
2024-tides.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/bash
# print all months for 2024
# note: pcal and ps2pdf must be installed before running
python3 -m venv tide-env
source tide-env/bin/activate
pip install requests
python3 get_tide_data.py --station_id 9449639 --year 2024 --month 1
python3 get_tide_data.py --station_id 9449639 --year 2024 --month 2
python3 get_tide_data.py --station_id 9449639 --year 2024 --month 3
python3 get_tide_data.py --station_id 9449639 --year 2024 --month 4
python3 get_tide_data.py --station_id 9449639 --year 2024 --month 5
python3 get_tide_data.py --station_id 9449639 --year 2024 --month 6
python3 get_tide_data.py --station_id 9449639 --year 2024 --month 7
python3 get_tide_data.py --station_id 9449639 --year 2024 --month 8
python3 get_tide_data.py --station_id 9449639 --year 2024 --month 9
python3 get_tide_data.py --station_id 9449639 --year 2024 --month 10
python3 get_tide_data.py --station_id 9449639 --year 2024 --month 11
python3 get_tide_data.py --station_id 9449639 --year 2024 --month 12
deactivate