finalize(self,
        loc='lower right',
        projection='moll',
        centre=None,
        range=[(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
  range : list
    [(xmin, ymin), (xmax, ymax)] pair of tuples for lower left and upper
    right corners of plot area. Full areai (entire sphere) is
    [(0,0), (1,1)]. Narrower range is zoomed in, wider range zoomed out.
  
    - Decorators:
 
    
        @plotutils.method_callable_once 
      
    - Overrides:
        plotutils.BasicPlot.finalize
    
 
   
 |