MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / __init__

Method __init__

lib/matplotlib/projections/geo.py:489–495  ·  view source on GitHub ↗
(self, *args, center_longitude=0, center_latitude=0, **kwargs)

Source from the content-addressed store, hash-verified

487 self._resolution)
488
489 def __init__(self, *args, center_longitude=0, center_latitude=0, **kwargs):
490 self._longitude_cap = np.pi / 2
491 self._center_longitude = center_longitude
492 self._center_latitude = center_latitude
493 super().__init__(*args, **kwargs)
494 self.set_aspect('equal', adjustable='box', anchor='C')
495 self.clear()
496
497 def clear(self):
498 # docstring inherited

Callers

nothing calls this directly

Calls 3

clearMethod · 0.95
__init__Method · 0.45
set_aspectMethod · 0.45

Tested by

no test coverage detected