Compare commits
2 Commits
658c44389e
...
385d5a07e7
Author | SHA1 | Date | |
---|---|---|---|
385d5a07e7 | |||
5637f219f8 |
|
@ -459,6 +459,7 @@ class City:
|
|||
for surface in city_object.surfaces:
|
||||
radiation = surface.global_irradiance
|
||||
if 'year' not in radiation and 'month' not in radiation:
|
||||
|
||||
continue
|
||||
elif "year" in radiation:
|
||||
building_radiation += radiation["year"].iloc[0]
|
||||
|
@ -468,11 +469,11 @@ class City:
|
|||
if building_radiation < min_radiation:
|
||||
min_radiation = building_radiation
|
||||
selected_city_object = city_object
|
||||
# merge the city object with the minimum radiation
|
||||
if selected_city_object is not None:
|
||||
_merge_city.add_city_object(selected_city_object)
|
||||
else:
|
||||
_merge_city.add_city_object(building)
|
||||
# merge the city object with the minimum radiation
|
||||
if selected_city_object is not None:
|
||||
_merge_city.add_city_object(selected_city_object)
|
||||
else:
|
||||
_merge_city.add_city_object(building)
|
||||
return _merge_city
|
||||
|
||||
@property
|
||||
|
|
Loading…
Reference in New Issue
Block a user