feature: add district heating network sizing workflow #18

Merged
a_rezaei merged 12 commits from majid-playing-with-ep-workflow into main 2024-08-15 15:50:17 -04:00
Showing only changes of commit 90a7f5648b - Show all commits

View File

@ -30,7 +30,7 @@ dir_manager = DirectoryManager(base_path)
# Input files directory
input_files_path = dir_manager.create_directory('input_files')
geojson_file_path = input_files_path / 'test_geojson1.geojson'
geojson_file_path = input_files_path / 'output_buildings.geojson'
# Output files directory
output_path = dir_manager.create_directory('out_files')
@ -41,6 +41,10 @@ simulation_results_path = dir_manager.create_directory('out_files/simulation_res
sra_output_path = dir_manager.create_directory('out_files/sra_outputs')
cost_analysis_output_path = dir_manager.create_directory('out_files/cost_analysis')
# Select city area
location = [45.53067276979674, -73.70234652694087]
process_geojson(x=location[1], y=location[0], diff=0.001)
# Create city object
city = GeometryFactory(file_type='geojson',
path=geojson_file_path,