Beispiel #1
0
 def __init__(self, *args, **kwargs):
     """
     See Axes base class for args and kwargs documentation
     """
     
     #Uncomment to have the possibility to change the resolution directly 
     #when the instance is created
     #self.RESOLUTION = kwargs.pop('resolution', 100)
     PolarAxes.__init__(self, *args, **kwargs)
     self.set_aspect('equal', adjustable='box', anchor='C')
     self.radii_angle = 67.5
     self.cla()
Beispiel #2
0
    def __init__(self, *args, **kwargs):
        """
        See Axes base class for args and kwargs documentation
        """

        #Uncomment to have the possibility to change the resolution directly
        #when the instance is created
        #self.RESOLUTION = kwargs.pop('resolution', 100)
        PolarAxes.__init__(self, *args, **kwargs)
        self.set_aspect('equal', adjustable='box', anchor='C')
        self.radii_angle = 67.5
        self.cla()
Beispiel #3
0
    def __init__(self, *args, **kwargs):
        """
        See Axes base class for args and kwargs documentation
        """

        # Uncomment to have the possibility to change the resolution directly
        # when the instance is created
        # self.RESOLUTION = kwargs.pop('resolution', 100)
        self.rmax = kwargs.pop("rmax", None)
        self.theta_labels = kwargs.pop("theta_labels", ["E", "N-E", "N", "N-W", "W", "S-W", "S", "S-E"])
        PolarAxes.__init__(self, *args, **kwargs)
        self.set_aspect("equal", adjustable="box", anchor="C")
        self.radii_angle = 67.5
        self.cla()