Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos OGC:WGS84 to OGC:CRS84 #3669

Merged
merged 1 commit into from
Dec 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pygmt/src/tilemap.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def tilemap(

**Note**: By default, standard web map tiles served in a Spherical Mercator
(EPSG:3857) Cartesian format will be reprojected to a geographic coordinate
reference system (OGC:WGS84) and plotted with longitude/latitude bounds when
reference system (OGC:CRS84) and plotted with longitude/latitude bounds when
``lonlat=True``. If reprojection is not desired, please set ``lonlat=False`` and
provide Spherical Mercator (EPSG:3857) coordinates to the ``region`` parameter.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
outs:
- md5: 5f225e4dd26f44e07bcbd8e713c67dbe
size: 37343
path: test_tilemap_ogc_wgs84.png
path: test_tilemap_ogc_crs84.png
hash: md5
4 changes: 2 additions & 2 deletions pygmt/tests/test_tilemap.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ def test_tilemap_web_mercator():
not (_HAS_CONTEXTILY and _HAS_RIOXARRAY),
reason="contextily and rioxarray are not installed",
)
def test_tilemap_ogc_wgs84():
def test_tilemap_ogc_crs84():
"""
Create a tilemap plot using longitude/latitude coordinates (OGC:WGS84), centred on
Create a tilemap plot using longitude/latitude coordinates (OGC:CRS84), centred on
the international date line.
"""
fig = Figure()
Expand Down
Loading