Skip to content

Commit 0cae0b5

Browse files
committed
Switch from transverse Mercator to plate carrée projection for Asia
1 parent 529e327 commit 0cae0b5

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

src/earthkit/plots/data/geo/domains.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,9 @@ domains:
3434
crs:
3535
name: NorthPolarStereo
3636
Asia:
37-
bounds: [-6000000, 6000000, -7500000, 5000000]
37+
bounds: [30, 179, -20, 80]
3838
crs:
39-
name: TransverseMercator
40-
central_latitude: 52.5
41-
central_longitude: 85
39+
name: PlateCarree
4240

4341
Oceania: [105, 240, -50, 30]
4442

src/earthkit/plots/geo/optimisers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ class SouthPolar(CRSOptimiser):
241241
class LargeEqatorial(CRSOptimiser):
242242
"""A domain with a central longitude < ±25 degrees, covering > 20% of the globe."""
243243

244-
CRS = TransverseMercator
244+
CRS = PlateCarree
245245

246246

247247
class Square(CRSOptimiser):
@@ -267,4 +267,4 @@ class Landscape(CRSOptimiser):
267267
class Portrait(CRSOptimiser):
268268
"""A non-equitorial domain with an aspect ratio < 0.8."""
269269

270-
CRS = TransverseMercator
270+
CRS = PlateCarree

0 commit comments

Comments
 (0)