Skip to content

Commit df00a5a

Browse files
authored
Merge pull request #11 from WebODM/boundsfix
Fix --boundary
2 parents 6f288ce + f2c3c87 commit df00a5a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.7.1
1+
3.7.2

opendm/boundary.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def load_boundary(boundary_json, reproject_to_proj4=None):
6262
dimensions = len(coords[0])
6363

6464
if reproject_to_proj4 is not None:
65-
t = transformer(CRS.from_proj4(fiona.crs.to_string(src.crs)),
65+
t = transformer(CRS.from_wkt(src.crs_wkt),
6666
CRS.from_proj4(reproject_to_proj4))
6767
coords = [t.TransformPoint(*c)[:dimensions] for c in coords]
6868

0 commit comments

Comments
 (0)