forked from llnl/ISO-DART
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathISODART.py
More file actions
28 lines (24 loc) · 1.08 KB
/
Copy pathISODART.py
File metadata and controls
28 lines (24 loc) · 1.08 KB
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
dataType = int(input('\nWhat type of data? (Answer 1 or 2)\n'
'(1) ISO Data\n'
'(2) Weather Data (temperature, dew point, relative humidity,\n'
' precipitation, snow depth,\n'
' wind direction, wind speed, wind peak gust,\n'
' air pressure, sunshine and weather condition)\n'))
if dataType == 1:
iso = int(input('\nWhich ISO you want data from? (Answer 1, 2, or 3)\n'
'(1) California Independent system Operator (CAISO)\n'
'(2) Midcontinent Independent System Operator (MISO)\n'
'(3) New York Independent System Operator (NYISO)\n'))
if iso == 1:
exec(open("mainCAISO.py").read())
elif iso == 2:
exec(open("mainMISO.py").read())
elif iso == 3:
exec(open("mainNYISO.py").read())
else:
print("Not a valid value!")
elif dataType == 2:
print("Loading...")
exec(open("mainWeather.py").read())
else:
print("Not a valid value!")