finalize(self,
        loc='lower right',
        projection='moll',
        centre=(0,0),
        frame=[(0,0),(1,1)])
  
   | source code 
     | 
    
  
  
Finalize and draw plot. Can only be called once.
Keyword arguments:
    toc : [ str | int ]
        compatible value for legend loc, default: 'lower right'
    projection : str
        valid projection name for mpl_toolkits.basemap.Basemap
    centre : list
        (ra, dec) in degrees for point to centre on plot, only works
        for some projections
    frame : list
        [(xmin, ymin), (xmax, ymax)] pair of tuples for lower left
        and upper right corners of plot area. Full arei (entire
        sphere) is [(0,0), (1,1)]. Narrower range is span in,
        wider range zoomed out.
  
    - Decorators:
 
    
    - Overrides:
        BasicPlot.finalize
    
 
   
 |