Skip to content

Commit 5c2c631

Browse files
authoredDec 4, 2024··
Fix typos OGC:WGS84 to OGC:CRS84 (#3669)
1 parent f8ef304 commit 5c2c631

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed
 

‎pygmt/src/tilemap.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def tilemap(
5050
5151
**Note**: By default, standard web map tiles served in a Spherical Mercator
5252
(EPSG:3857) Cartesian format will be reprojected to a geographic coordinate
53-
reference system (OGC:WGS84) and plotted with longitude/latitude bounds when
53+
reference system (OGC:CRS84) and plotted with longitude/latitude bounds when
5454
``lonlat=True``. If reprojection is not desired, please set ``lonlat=False`` and
5555
provide Spherical Mercator (EPSG:3857) coordinates to the ``region`` parameter.
5656
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
outs:
22
- md5: 5f225e4dd26f44e07bcbd8e713c67dbe
33
size: 37343
4-
path: test_tilemap_ogc_wgs84.png
4+
path: test_tilemap_ogc_crs84.png
55
hash: md5

‎pygmt/tests/test_tilemap.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ def test_tilemap_web_mercator():
4141
not (_HAS_CONTEXTILY and _HAS_RIOXARRAY),
4242
reason="contextily and rioxarray are not installed",
4343
)
44-
def test_tilemap_ogc_wgs84():
44+
def test_tilemap_ogc_crs84():
4545
"""
46-
Create a tilemap plot using longitude/latitude coordinates (OGC:WGS84), centred on
46+
Create a tilemap plot using longitude/latitude coordinates (OGC:CRS84), centred on
4747
the international date line.
4848
"""
4949
fig = Figure()

0 commit comments

Comments
 (0)
Please sign in to comment.