Skip to content

Commit b272648

Browse files
committed
Change target CRS to one that works in the region
1 parent 1c962ae commit b272648

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

apps/dc_tools/tests/test_stac_transform.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,19 @@
77

88

99
def test_geographic_to_projected(geometry_with_a_twist):
10-
transformed = _geographic_to_projected(geometry_with_a_twist, "EPSG:900913")
10+
transformed = _geographic_to_projected(geometry_with_a_twist, "EPSG:3832")
1111

1212
assert transformed is not None
1313

1414
expected = {
1515
"type": "Polygon",
1616
"coordinates": (
1717
(
18-
(-20027996.181356553, -1680401.0306884265),
19-
(20034964.592237074, -1731788.8882795917),
20-
(-19879088.250739392, -1906633.287019358),
21-
(-20035623.926449094, -1870777.708859445),
22-
(-20027996.181356553, -1680401.0306884265),
18+
(3498004.815848052, -1894234.3033218135),
19+
(3341469.1401383593, -1858599.0018098454),
20+
(3337040.973246038, -1720470.5990706773),
21+
(3349096.8852309, -1669403.410330984),
22+
(3498004.815848052, -1894234.3033218135),
2323
),
2424
),
2525
}

0 commit comments

Comments
 (0)