mabuseif commited on
Commit
5b611e7
·
verified ·
1 Parent(s): 1c54b9b

Update data/climate_data.py

Browse files
Files changed (1) hide show
  1. data/climate_data.py +2 -3
data/climate_data.py CHANGED
@@ -1,6 +1,5 @@
1
  """
2
- ASHRAE 169 climate data module for HVAC Load Calculator.
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 # Import new module
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)