File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -747,8 +747,6 @@ def setup_aggregation_areas(
747
747
shutil .copy2 (aggregation_area_fn , additional_att )
748
748
749
749
750
- # TODO loop over file names and copy into self.root (create directory (aggregation and BF))
751
-
752
750
def setup_building_footprint (
753
751
self ,
754
752
building_footprint_fn : Union [str , Path ],
@@ -774,7 +772,10 @@ def setup_building_footprint(
774
772
building_footprint_fn ,
775
773
attribute_name ,
776
774
)
777
- # TODO: loop over file names and copy into self.root (create directory (aggregation and BF))
775
+ building_footprints = Path (self .root ).joinpath ("output" , "building_footprints" )
776
+ if not os .path .exists (building_footprints ):
777
+ os .makedirs (building_footprints )
778
+ shutil .copy2 (building_footprint_fn , building_footprints )
778
779
779
780
# Update functions
780
781
def update_all (self ):
You can’t perform that action at this time.
0 commit comments