示例#1
0
 def plot_planet(self,
                 t,
                 ax=False,
                 min_temp=False,
                 max_temp=False,
                 temp_map=False,
                 min_bright=0.2,
                 scale_planet=1.0,
                 planet_cen=[0.0, 0.0],
                 use_phase=False,
                 show_cax=True,
                 mycmap=plt.cm.inferno,
                 theme='black',
                 show_axes=False):
     if use_phase == True:
         t = self.t0 + self.per * t
     return splt.plot_planet(self,
                             t,
                             ax=ax,
                             min_temp=min_temp,
                             max_temp=max_temp,
                             temp_map=temp_map,
                             min_bright=min_bright,
                             scale_planet=scale_planet,
                             planet_cen=planet_cen,
                             show_cax=show_cax,
                             mycmap=mycmap,
                             theme=theme,
                             show_axes=show_axes)
示例#2
0
 def plot_planet(self, *args, **kwargs):
     return splt.plot_planet(self, *args, **kwargs)
示例#3
0
 def plot_planet(self,*args,**kwargs):
     return splt.plot_planet(self,*args,**kwargs)