Skip to content

Commit

Permalink
Fixed the bug of stacking on polygon over the other on the soils layer.
Browse files Browse the repository at this point in the history
  • Loading branch information
rpachaly committed Jan 15, 2025
1 parent 0bf7942 commit 070e33e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flo2d/misc/ssurgo_soils.py
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ def combineSsurgoLayers(self):
"""Method for combining the chorizon and chfrags layer"""
self.ssurgo_layer = self.joinLayers(self.soil_chorizon, self.soil_chfrags)
self.ssurgo_layer = self.joinLayers(self.ssurgo_layer, self.soil_comp)
self.ssurgo_layer = self.deleteHoles(self.ssurgo_layer)
# self.ssurgo_layer = self.deleteHoles(self.ssurgo_layer)
self.ssurgo_layer.setName("ssurgo")
if self.saveLayers: self.saveSoilDataToGpkg(self.ssurgo_layer)

Expand Down

0 comments on commit 070e33e

Please sign in to comment.