Update data/climate_data.py
Browse files- data/climate_data.py +2 -3
data/climate_data.py
CHANGED
|
@@ -1,6 +1,5 @@
|
|
| 1 |
"""
|
| 2 |
-
|
| 3 |
-
Extracts climate data from EPW files and provides visualizations inspired by Climate Consultant.
|
| 4 |
Includes Solar Analysis tab for solar angle and ground-reflected radiation calculations.
|
| 5 |
|
| 6 |
Author: Dr Majed Abuseif
|
|
@@ -21,7 +20,7 @@ import pvlib
|
|
| 21 |
from datetime import datetime, timedelta
|
| 22 |
import re
|
| 23 |
import logging
|
| 24 |
-
from solar_calculations import SolarCalculations
|
| 25 |
|
| 26 |
# Set up logging
|
| 27 |
logging.basicConfig(level=logging.INFO)
|
|
|
|
| 1 |
"""
|
| 2 |
+
Extracts climate data from EPW files
|
|
|
|
| 3 |
Includes Solar Analysis tab for solar angle and ground-reflected radiation calculations.
|
| 4 |
|
| 5 |
Author: Dr Majed Abuseif
|
|
|
|
| 20 |
from datetime import datetime, timedelta
|
| 21 |
import re
|
| 22 |
import logging
|
| 23 |
+
from data.solar_calculations import SolarCalculations
|
| 24 |
|
| 25 |
# Set up logging
|
| 26 |
logging.basicConfig(level=logging.INFO)
|