Skip to content

Commit 174d0b4

Browse files
committed
fix: Save AOI to proper path
1 parent 0853107 commit 174d0b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rusle/rusle_core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1059,7 +1059,7 @@ def rusle_core(input_dict: dict) -> None:
10591059
aoi_raw_path_wkt = os.path.join(tmp_dir, "aoi_from_wkt.shp")
10601060

10611061
aoi_gpd_wkt_4326 = aoi_gpd_wkt.to_crs(4326)
1062-
aoi_gpd_wkt.to_file(aoi_gpd_wkt_4326)
1062+
aoi_gpd_wkt_4326.to_file(aoi_raw_path_wkt)
10631063
aoi_raw_path = aoi_raw_path_wkt
10641064

10651065
# - Open aoi

0 commit comments

Comments
 (0)