Skip to content

Commit d8c91d7

Browse files
authored
Fix the grdtrack example to avoid crashes on macOS (#531)
* Fix the grdtrack gallery example to avoid crashes * Enable building documentation
1 parent f0d3762 commit d8c91d7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci_tests.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -112,9 +112,9 @@ jobs:
112112
run: make test PYTEST_EXTRA="-r P"
113113

114114
# Build the documentation
115-
#- name: Build the documentation
116-
# shell: bash -l {0}
117-
# run: make -C doc clean all
115+
- name: Build the documentation
116+
shell: bash -l {0}
117+
run: make -C doc clean all
118118

119119
# Upload coverage to Codecov
120120
- name: Upload coverage to Codecov

examples/gallery/grid/track_sampling.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
fig = pygmt.Figure()
2626
# Plot the earth relief grid on Cylindrical Stereographic projection, masking land areas
27-
fig.basemap(region="g", frame=True, projection="Cyl_stere/150/-20/8i")
27+
fig.basemap(region="d", frame=True, projection="Cyl_stere/8i")
2828
fig.grdimage(grid=grid, cmap="gray")
2929
fig.coast(land="#666666")
3030
# Plot using circles (c) of 0.15cm, the sampled bathymetry points

0 commit comments

Comments
 (0)