1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608
|
# Copyright Crown and Cartopy Contributors
#
# This file is part of Cartopy and is released under the BSD 3-clause license.
# See LICENSE in the root of the repository for full licensing details.
import io
from unittest import mock
from matplotlib.collections import PolyCollection
import matplotlib.pyplot as plt
import matplotlib.ticker as mticker
import numpy as np
import pytest
from shapely.geos import geos_version
import cartopy.crs as ccrs
from cartopy.mpl.geoaxes import GeoAxes
from cartopy.mpl.gridliner import (
LATITUDE_FORMATTER,
LONGITUDE_FORMATTER,
Gridliner,
classic_formatter,
classic_locator,
)
from cartopy.mpl.ticker import LongitudeFormatter, LongitudeLocator
TEST_PROJS = [
ccrs.PlateCarree,
ccrs.AlbersEqualArea,
ccrs.AzimuthalEquidistant,
ccrs.LambertConformal,
ccrs.LambertCylindrical,
ccrs.Mercator,
ccrs.Miller,
ccrs.Mollweide,
ccrs.Orthographic,
ccrs.Robinson,
ccrs.Sinusoidal,
ccrs.Stereographic,
pytest.param((ccrs.InterruptedGoodeHomolosine, dict(emphasis='land')),
id='InterruptedGoodeHomolosine'),
pytest.param(
(ccrs.RotatedPole,
dict(pole_longitude=180.0, pole_latitude=36.0,
central_rotated_longitude=-106.0)),
id='RotatedPole'),
pytest.param((ccrs.OSGB, dict(approx=False)), id='OSGB'),
ccrs.EuroPP,
ccrs.Geostationary,
ccrs.NearsidePerspective,
ccrs.Gnomonic,
ccrs.LambertAzimuthalEqualArea,
ccrs.NorthPolarStereo,
pytest.param((ccrs.OSNI, dict(approx=False)), id='OSNI'),
ccrs.SouthPolarStereo,
]
@pytest.mark.natural_earth
# Robinson projection is slightly better in Proj 6+.
@pytest.mark.mpl_image_compare(filename='gridliner1.png', tolerance=0.73)
def test_gridliner():
ny, nx = 2, 4
fig = plt.figure(figsize=(10, 10))
ax = fig.add_subplot(nx, ny, 1, projection=ccrs.PlateCarree())
ax.set_global()
ax.coastlines(resolution="110m")
ax.gridlines(linestyle=':')
ax = fig.add_subplot(nx, ny, 2, projection=ccrs.OSGB(approx=False))
ax.set_global()
ax.coastlines(resolution="110m")
ax.gridlines(linestyle=':')
ax = fig.add_subplot(nx, ny, 3, projection=ccrs.OSGB(approx=False))
ax.set_global()
ax.coastlines(resolution="110m")
ax.gridlines(ccrs.PlateCarree(), color='blue', linestyle='-')
ax.gridlines(ccrs.OSGB(approx=False), linestyle=':')
ax = fig.add_subplot(nx, ny, 4, projection=ccrs.PlateCarree())
ax.set_global()
ax.coastlines(resolution="110m")
ax.gridlines(ccrs.NorthPolarStereo(), alpha=0.5,
linewidth=1.5, linestyle='-')
ax = fig.add_subplot(nx, ny, 5, projection=ccrs.PlateCarree())
ax.set_global()
ax.coastlines(resolution="110m")
osgb = ccrs.OSGB(approx=False)
ax.set_extent(tuple(osgb.x_limits) + tuple(osgb.y_limits), crs=osgb)
ax.gridlines(osgb, linestyle=':')
ax = fig.add_subplot(nx, ny, 6, projection=ccrs.NorthPolarStereo())
ax.set_global()
ax.coastlines(resolution="110m")
ax.gridlines(alpha=0.5, linewidth=1.5, linestyle='-')
ax = fig.add_subplot(nx, ny, 7, projection=ccrs.NorthPolarStereo())
ax.set_global()
ax.coastlines(resolution="110m")
osgb = ccrs.OSGB(approx=False)
ax.set_extent(tuple(osgb.x_limits) + tuple(osgb.y_limits), crs=osgb)
ax.gridlines(osgb, linestyle=':')
ax = fig.add_subplot(nx, ny, 8,
projection=ccrs.Robinson(central_longitude=135))
ax.set_global()
ax.coastlines(resolution="110m")
ax.gridlines(ccrs.PlateCarree(), alpha=0.5, linewidth=1.5, linestyle='-')
delta = 1.5e-2
fig.subplots_adjust(left=0 + delta, right=1 - delta,
top=1 - delta, bottom=0 + delta)
return fig
def test_gridliner_specified_lines():
meridians = [0, 60, 120, 180, 240, 360]
parallels = [-90, -60, -30, 0, 30, 60, 90]
ax = plt.subplot(1, 1, 1, projection=ccrs.PlateCarree())
gl = GeoAxes.gridlines(ax, xlocs=meridians, ylocs=parallels)
assert isinstance(gl.xlocator, mticker.FixedLocator)
assert isinstance(gl.ylocator, mticker.FixedLocator)
assert gl.xlocator.tick_values(None, None).tolist() == meridians
assert gl.ylocator.tick_values(None, None).tolist() == parallels
# The tolerance on these tests are particularly high because of the high number
# of text objects. A new testing strategy is needed for this kind of test.
grid_label_tol = 3.9
@pytest.mark.skipif(geos_version >= (3, 9, 0), reason="GEOS intersection bug")
@pytest.mark.natural_earth
@pytest.mark.mpl_image_compare(filename='gridliner_labels.png',
tolerance=grid_label_tol)
def test_grid_labels():
fig = plt.figure(figsize=(10, 10))
crs_pc = ccrs.PlateCarree()
crs_merc = ccrs.Mercator()
ax = fig.add_subplot(3, 2, 1, projection=crs_pc)
ax.coastlines(resolution="110m")
ax.gridlines(draw_labels=True)
ax = fig.add_subplot(
3, 2, 2, projection=ccrs.PlateCarree(central_longitude=180))
ax.coastlines(resolution="110m")
gl = ax.gridlines(crs=crs_pc, draw_labels=True)
gl.top_labels = False
gl.left_labels = False
gl.xlines = False
ax = fig.add_subplot(3, 2, 3, projection=crs_merc)
ax.coastlines(resolution="110m")
gl = ax.gridlines(draw_labels=True)
gl.xlabel_style = gl.ylabel_style = {'size': 9}
ax = fig.add_subplot(3, 2, 4, projection=crs_pc)
ax.coastlines(resolution="110m")
gl = ax.gridlines(
crs=crs_pc, linewidth=2, color='gray', alpha=0.5, linestyle=':')
gl.bottom_labels = True
gl.right_labels = True
gl.xlines = False
gl.xlocator = mticker.FixedLocator([-180, -45, 45, 180])
gl.xformatter = LONGITUDE_FORMATTER
gl.yformatter = LATITUDE_FORMATTER
gl.xlabel_style = {'color': 'red'}
gl.xpadding = 10
gl.ypadding = 15
# trigger a draw at this point and check the appropriate artists are
# populated on the gridliner instance
fig.canvas.draw()
assert len([
lb for lb in gl.bottom_label_artists if lb.get_visible()]) == 4
assert len([
lb for lb in gl.top_label_artists if lb.get_visible()]) == 0
assert len([
lb for lb in gl.left_label_artists if lb.get_visible()]) == 0
assert len([
lb for lb in gl.right_label_artists if lb.get_visible()]) != 0
assert len(gl.xline_artists) == 0
ax = fig.add_subplot(3, 2, 5, projection=crs_pc)
ax.set_extent([-20, 10.0, 45.0, 70.0])
ax.coastlines(resolution="110m")
ax.gridlines(draw_labels=True)
ax = fig.add_subplot(3, 2, 6, projection=crs_merc)
ax.set_extent([-20, 10.0, 45.0, 70.0], crs=crs_pc)
ax.coastlines(resolution="110m")
gl = ax.gridlines(draw_labels=True)
gl.rotate_labels = False
gl.xlabel_style = gl.ylabel_style = {'size': 9}
# Increase margins between plots to stop them bumping into one another.
fig.subplots_adjust(wspace=0.25, hspace=0.25)
return fig
@pytest.mark.skipif(geos_version >= (3, 9, 0), reason="GEOS intersection bug")
@pytest.mark.natural_earth
@pytest.mark.mpl_image_compare(filename='gridliner_labels_tight.png',
tolerance=2.9)
def test_grid_labels_tight():
# Ensure tight layout accounts for gridlines
fig = plt.figure(figsize=(7, 5))
crs_pc = ccrs.PlateCarree()
crs_merc = ccrs.Mercator()
ax = fig.add_subplot(2, 2, 1, projection=crs_pc)
ax.coastlines(resolution="110m")
ax.gridlines(draw_labels=True)
ax = fig.add_subplot(2, 2, 2, projection=crs_merc)
ax.coastlines(resolution="110m")
ax.gridlines(draw_labels=True)
# Matplotlib tight layout is also incorrect if cartopy fails
# to adjust aspect ratios first. Relevant when aspect ratio has
# changed due to set_extent.
ax = fig.add_subplot(2, 2, 3, projection=crs_pc)
ax.set_extent([-20, 10.0, 45.0, 70.0])
ax.coastlines(resolution="110m")
ax.gridlines(draw_labels=True)
ax = fig.add_subplot(2, 2, 4, projection=crs_merc)
ax.set_extent([-20, 10.0, 45.0, 70.0], crs=crs_pc)
ax.coastlines(resolution="110m")
gl = ax.gridlines(draw_labels=True)
gl.rotate_labels = False
# Apply tight layout
fig.tight_layout()
# Ensure gridliners were drawn
num_gridliners_drawn = 0
for ax in fig.axes:
for artist in ax.artists:
if isinstance(artist, Gridliner) and getattr(artist, '_drawn',
False):
num_gridliners_drawn += 1
assert num_gridliners_drawn == 4
return fig
@pytest.mark.xfail(strict=False, reason="Fails with older MPL")
@pytest.mark.mpl_image_compare(
filename='gridliner_constrained_adjust_datalim.png',
tolerance=grid_label_tol)
def test_gridliner_constrained_adjust_datalim():
fig = plt.figure(figsize=(8, 4), layout="constrained")
# Make some axes that will fill the available space while maintaining
# correct aspect ratio
ax = fig.add_subplot(projection=ccrs.PlateCarree())
ax.set_aspect(aspect='equal', adjustable='datalim')
# Add some polygon to the map, with a colour bar
collection = PolyCollection(
verts=[
[[0, 0], [1, 0], [1, 1], [0, 1]],
[[1, 0], [2, 0], [2, 1], [1, 1]],
[[0, 1], [1, 1], [1, 2], [0, 2]],
[[1, 1], [2, 1], [2, 2], [1, 2]],
],
array=[1, 2, 3, 4],
)
ax.add_collection(collection)
fig.colorbar(collection, ax=ax, location='right')
# Set up the axes data limits to keep the polygon in view
ax.autoscale()
# Add some gridlines
ax.gridlines(draw_labels=["bottom", "left"], linestyle="-")
return fig
@pytest.mark.skipif(geos_version >= (3, 9, 0), reason="GEOS intersection bug")
@pytest.mark.natural_earth
@pytest.mark.parametrize('proj', TEST_PROJS)
@pytest.mark.mpl_image_compare(style='mpl20')
def test_grid_labels_inline(proj):
fig = plt.figure()
if isinstance(proj, tuple):
proj, kwargs = proj
else:
kwargs = {}
ax = fig.add_subplot(projection=proj(**kwargs))
ax.gridlines(crs=ccrs.PlateCarree(), draw_labels=True, auto_inline=True)
ax.coastlines(resolution="110m")
return fig
@pytest.mark.skipif(geos_version >= (3, 9, 0), reason="GEOS intersection bug")
@pytest.mark.natural_earth
@pytest.mark.parametrize('proj', TEST_PROJS)
@pytest.mark.mpl_image_compare(style='mpl20', tolerance=0.79)
def test_grid_labels_inline_usa(proj):
top = 49.3457868 # north lat
left = -124.7844079 # west long
right = -66.9513812 # east long
bottom = 24.7433195 # south lat
fig = plt.figure()
if isinstance(proj, tuple):
proj, kwargs = proj
else:
kwargs = {}
ax = fig.add_subplot(projection=proj(**kwargs))
try:
ax.set_extent([left, right, bottom, top],
crs=ccrs.PlateCarree())
except Exception:
pytest.skip('Projection does not support changing extent')
ax.gridlines(draw_labels=True, auto_inline=True, clip_on=True)
ax.coastlines(resolution="110m")
return fig
@pytest.mark.natural_earth
@pytest.mark.skipif(geos_version >= (3, 9, 0), reason="GEOS intersection bug")
@pytest.mark.mpl_image_compare(filename='gridliner_labels_bbox_style.png',
tolerance=grid_label_tol)
def test_gridliner_labels_bbox_style():
top = 49.3457868 # north lat
left = -124.7844079 # west long
right = -66.9513812 # east long
bottom = 24.7433195 # south lat
fig = plt.figure(figsize=(6, 3))
ax = fig.add_subplot(1, 1, 1, projection=ccrs.PlateCarree())
ax.coastlines(resolution="110m")
ax.set_extent([left, right, bottom, top],
crs=ccrs.PlateCarree())
gl = ax.gridlines(draw_labels=True)
gl.labels_bbox_style = {
"pad": 0,
"visible": True,
"facecolor": "white",
"edgecolor": "black",
"boxstyle": "round, pad=0.2",
}
return fig
@pytest.mark.parametrize(
"proj,gcrs,xloc,xfmt,xloc_expected,xfmt_expected",
[
(ccrs.PlateCarree(), ccrs.PlateCarree(),
[10, 20], None, mticker.FixedLocator, LongitudeFormatter),
(ccrs.PlateCarree(), ccrs.Mercator(),
[10, 20], None, mticker.FixedLocator, classic_formatter),
(ccrs.PlateCarree(), ccrs.PlateCarree(),
mticker.MaxNLocator(nbins=9), None,
mticker.MaxNLocator, LongitudeFormatter),
(ccrs.PlateCarree(), ccrs.Mercator(),
mticker.MaxNLocator(nbins=9), None,
mticker.MaxNLocator, classic_formatter),
(ccrs.PlateCarree(), ccrs.PlateCarree(),
None, None, LongitudeLocator, LongitudeFormatter),
(ccrs.PlateCarree(), ccrs.Mercator(),
None, None, classic_locator.__class__, classic_formatter),
(ccrs.PlateCarree(), ccrs.PlateCarree(),
None, mticker.StrMethodFormatter('{x}'),
LongitudeLocator, mticker.StrMethodFormatter),
])
def test_gridliner_default_fmtloc(
proj, gcrs, xloc, xfmt, xloc_expected, xfmt_expected):
fig = plt.figure()
ax = fig.add_subplot(1, 1, 1, projection=proj)
gl = ax.gridlines(crs=gcrs, draw_labels=False, xlocs=xloc, xformatter=xfmt)
assert isinstance(gl.xlocator, xloc_expected)
assert isinstance(gl.xformatter, xfmt_expected)
def test_gridliner_line_limits():
fig = plt.figure()
ax = fig.add_subplot(1, 1, 1, projection=ccrs.NorthPolarStereo())
ax.set_global()
# Test a single value passed in which represents (-lim, lim)
xlim, ylim = 125, 75
gl = ax.gridlines(xlim=xlim, ylim=ylim)
fig.canvas.draw_idle()
paths = gl.xline_artists[0].get_paths() + gl.yline_artists[0].get_paths()
for path in paths:
assert (np.min(path.vertices, axis=0) >= (-xlim, -ylim)).all()
assert (np.max(path.vertices, axis=0) <= (xlim, ylim)).all()
# Test a pair of values passed in which represents the min, max
xlim = (-125, 150)
ylim = (50, 70)
gl = ax.gridlines(xlim=xlim, ylim=ylim)
fig.canvas.draw_idle()
paths = gl.xline_artists[0].get_paths() + gl.yline_artists[0].get_paths()
for path in paths:
assert (np.min(path.vertices, axis=0) >= (xlim[0], ylim[0])).all()
assert (np.max(path.vertices, axis=0) <= (xlim[1], ylim[1])).all()
@pytest.mark.parametrize(
"draw_labels, result",
[
(True,
{'left': ['40°N'],
'right': ['40°N', '50°N'],
'top': ['70°E', '100°E', '130°E'],
'bottom': ['100°E']}),
(False,
{'left': [],
'right': [],
'top': [],
'bottom': []}),
(['top', 'left'],
{'left': ['40°N'],
'right': [],
'top': ['70°E', '100°E', '130°E'],
'bottom': []}),
({'top': 'x', 'right': 'y'},
{'left': [],
'right': ['40°N', '50°N'],
'top': ['70°E', '100°E', '130°E'],
'bottom': []}),
({'left': 'x'},
{'left': ['70°E'],
'right': [],
'top': [],
'bottom': []}),
({'top': 'y'},
{'left': [],
'right': [],
'top': ['50°N'],
'bottom': []}),
])
def test_gridliner_draw_labels_param(draw_labels, result):
fig = plt.figure()
lambert_crs = ccrs.LambertConformal(central_longitude=105)
ax = fig.add_subplot(projection=lambert_crs)
ax.set_extent([75, 130, 18, 54], crs=ccrs.PlateCarree())
gl = ax.gridlines(draw_labels=draw_labels, rotate_labels=False, dms=True,
x_inline=False, y_inline=False)
gl.xlocator = mticker.FixedLocator([70, 100, 130])
gl.ylocator = mticker.FixedLocator([40, 50])
fig.canvas.draw()
res = {}
for loc in 'left', 'right', 'top', 'bottom':
artists = getattr(gl, f'{loc}_label_artists')
res[loc] = [a.get_text() for a in artists if a.get_visible()]
assert res == result
def test_gridliner_formatter_kwargs():
fig = plt.figure()
ax = fig.add_subplot(1, 1, 1, projection=ccrs.PlateCarree())
ax.set_extent([-80, -40.0, 10.0, -30.0])
gl = ax.gridlines(draw_labels=True, dms=False,
formatter_kwargs=dict(cardinal_labels={'west': 'O'}))
fig.canvas.draw()
labels = [a.get_text() for a in gl.bottom_label_artists if a.get_visible()]
assert labels == ['75°O', '70°O', '65°O', '60°O', '55°O', '50°O', '45°O']
def test_gridliner_count_draws():
fig = plt.figure()
ax = fig.add_subplot(1, 1, 1, projection=ccrs.PlateCarree())
ax.set_global()
gl = ax.gridlines()
with mock.patch.object(gl, '_draw_gridliner', return_value=None) as mocked:
ax.get_tightbbox()
mocked.assert_called_once()
with mock.patch.object(gl, '_draw_gridliner', return_value=None) as mocked:
fig.draw_without_rendering()
mocked.assert_called_once()
@pytest.mark.natural_earth
@pytest.mark.mpl_image_compare(
baseline_dir='baseline_images/mpl/test_mpl_integration',
filename='simple_global.png')
def test_gridliner_remove():
fig = plt.figure()
ax = fig.add_subplot(1, 1, 1, projection=ccrs.PlateCarree())
ax.set_global()
ax.coastlines()
gl = ax.gridlines(draw_labels=True)
fig.draw_without_rendering() # Generate child artists
gl.remove()
assert gl not in ax.artists
return fig
def test_gridliner_save_tight_bbox():
# Smoke test for save with bbox_inches=Tight (gh2246).
fig = plt.figure()
ax = fig.add_subplot(1, 1, 1, projection=ccrs.PlateCarree())
ax.set_global()
ax.gridlines(draw_labels=True)
fig.savefig(io.BytesIO(), bbox_inches='tight')
@pytest.mark.natural_earth
@pytest.mark.mpl_image_compare(filename='gridliner_labels_title_adjust.png',
tolerance=grid_label_tol)
def test_gridliner_title_adjust():
# Test that title do not overlap labels
projs = [ccrs.Mercator(), ccrs.AlbersEqualArea(), ccrs.LambertConformal(),
ccrs.Orthographic()]
# Turn on automatic title placement (this is default in mpl rcParams but
# not in these tests).
plt.rcParams['axes.titley'] = None
fig = plt.figure(layout='constrained')
fig.get_layout_engine().set(h_pad=1/8)
for n, proj in enumerate(projs, 1):
ax = fig.add_subplot(2, 2, n, projection=proj)
ax.coastlines()
ax.gridlines(draw_labels=True)
ax.set_title(proj.__class__.__name__)
return fig
def test_gridliner_title_noadjust():
fig = plt.figure()
ax = fig.add_subplot(1, 1, 1, projection=ccrs.PlateCarree())
ax.set_global()
ax.set_title('foo')
ax.gridlines(draw_labels=['left', 'right'], ylocs=[-60, 0, 60])
fig.draw_without_rendering()
pos = ax.title.get_position()
# Title position shouldn't change when a label is on the top boundary.
ax.set_extent([-180, 180, -60, 60])
fig.draw_without_rendering()
assert ax.title.get_position() == pos
def test_gridliner_title_adjust_no_layout_engine():
fig = plt.figure()
ax = fig.add_subplot(projection=ccrs.PlateCarree())
gl = ax.gridlines(draw_labels=True)
title = ax.set_title("MY TITLE")
# After first draw, title should be above top labels.
fig.draw_without_rendering()
max_label_y = max([bb.get_tightbbox().ymax for bb in gl.top_label_artists])
min_title_y = title.get_tightbbox().ymin
assert min_title_y > max_label_y
def test_gridliner_labels_zoom():
fig = plt.figure()
ax = fig.add_subplot(1, 1, 1, projection=ccrs.PlateCarree())
# Start with a global map.
ax.set_global()
gl = ax.gridlines(draw_labels=True)
fig.draw_without_rendering() # Generate child artists
labels = [a.get_text() for a in gl.bottom_label_artists if a.get_visible()]
assert labels == ['180°', '120°W', '60°W', '0°', '60°E', '120°E', '180°']
# For first draw, active labels should be all of the labels.
assert len(gl._all_labels) == 24
assert gl._labels == gl._all_labels
# Zoom in.
ax.set_extent([-20, 10.0, 45.0, 70.0])
fig.draw_without_rendering() # Update child artists
labels = [a.get_text() for a in gl.bottom_label_artists if a.get_visible()]
assert labels == ['15°W', '10°W', '5°W', '0°', '5°E']
# After zoom, we may not be using all the available labels.
assert len(gl._all_labels) == 24
assert gl._labels == gl._all_labels[:20]
def test_gridliner_with_globe():
fig = plt.figure()
proj = ccrs.PlateCarree(globe=ccrs.Globe(semimajor_axis=12345))
ax = fig.add_subplot(1, 1, 1, projection=proj)
gl = ax.gridlines()
fig.draw_without_rendering()
assert gl in ax.artists
|