(self, *args, **kwargs)
| 258 | # set_xlim and set_ylim to ignore any input. This also applies to |
| 259 | # interactive panning and zooming in the GUI interfaces. |
| 260 | def set_xlim(self, *args, **kwargs): |
| 261 | raise TypeError("Changing axes limits of a geographic projection is " |
| 262 | "not supported. Please consider using Cartopy.") |
| 263 | |
| 264 | set_ylim = set_xlim |
| 265 |
no outgoing calls
no test coverage detected