Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a8bbca3

Browse files
committedMar 5, 2025·
Fixed layer ordering for geotiff
1 parent 1d7cbfb commit a8bbca3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎arho_feature_template/core/geotiff_creator.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,12 @@ def create_geotiff(self, geotiff_path):
6262
settings = QgsMapSettings()
6363
settings.setLayers(
6464
[
65-
LandUseAreaLayer.get_from_project(),
66-
OtherAreaLayer.get_from_project(),
65+
PlanLayer.get_from_project(),
6766
LandUsePointLayer.get_from_project(),
68-
LineLayer.get_from_project(),
6967
OtherPointLayer.get_from_project(),
70-
PlanLayer.get_from_project(),
68+
LineLayer.get_from_project(),
69+
OtherAreaLayer.get_from_project(),
70+
LandUseAreaLayer.get_from_project(),
7171
]
7272
)
7373
settings.setBackgroundColor(QColor(255, 255, 255))

0 commit comments

Comments
 (0)
Please sign in to comment.