File: gridliner.py

package info (click to toggle)
python-cartopy 0.25.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 13,152 kB
  • sloc: python: 16,526; makefile: 159; javascript: 66
file content (26 lines) | stat: -rw-r--r-- 771 bytes parent folder | download | duplicates (2)
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
# 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 matplotlib.pyplot as plt

import cartopy.crs as ccrs


class Gridliner:
    params = [
        (False, True),
        (False, True),
    ]
    param_names = ['draw_labels', 'inline']

    def setup(self, draw_labels, inline):
        self.proj = ccrs.PlateCarree()
        fig, ax = plt.subplots(subplot_kw=dict(projection=self.proj))
        ax.gridlines(draw_labels=draw_labels, x_inline=inline, y_inline=inline,
                     auto_inline=False)
        self.figure = fig

    def time_gridlines(self, draw_labels, inline):
        self.figure.canvas.draw()