remove the .idea from the git

This commit is contained in:
Guille Gutierrez 2022-03-07 11:27:54 -05:00
parent 9c9e6179f8
commit 4a4a8cb1cb

View File

@ -108,12 +108,14 @@ class SimplifiedRadiosityAlgorithm:
""" """
for radiation in self.radiation: for radiation in self.radiation:
city_object_name = radiation.columns.values.tolist()[1].split(':')[1] city_object_name = radiation.columns.values.tolist()[1].split(':')[1]
print(city_object_name)
if building_name is not None: if building_name is not None:
if city_object_name != building_name: if city_object_name != building_name:
# todo: in case there is a specific building name defined, then assign values only to that specific building # todo: in case there is a specific building name defined, then assign values only to that specific building
continue continue
building = city.city_object(city_object_name) building = city.city_object(city_object_name)
print(f'[{building.name}], {city_object_name}')
for column in radiation.columns.values: for column in radiation.columns.values:
if column == cte.MONTH: if column == cte.MONTH:
continue continue
@ -136,7 +138,6 @@ class SimplifiedRadiosityAlgorithm:
def _create_cli_file(self, key): def _create_cli_file(self, key):
file = self._city.climate_file file = self._city.climate_file
print(file)
days_in_month = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31] days_in_month = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]
WeatherFactory(key, self._city, file_name=self._weather_file_name).enrich() WeatherFactory(key, self._city, file_name=self._weather_file_name).enrich()
content = self._city.name + '\n' content = self._city.name + '\n'