;+ ; NAME: ; starmap_plot_2012_ii ; PURPOSE: ; plot star map during 11-13-2012 solar eclipse ; CATEGORY: ; CALLING SEQUENCE: ; INPUTS: ; OPTIONAL (KEYWORD) INPUT PARAMETERS: ; OUTPUTS: ; COMMON BLOCKS: ; SIDE EFFECTS: ; RESTRICTIONS: ; MODIFICATION HISTORY: ; (HH) Jun 30 2011 ;- thick = 1 & xthick = 1 & ythick = 1 & charthick = 1 if !d.name eq 'PS' then !p.font = 0 else !p.font = -1 if !D.name eq 'PS' then begin thick=5 & xthick=5 & ythick=5 & charthick = 3 device,/encapsulate,bits=8,file='starmap_2012.eps' device,/color endif stars = rd_tfile('starlist_11_13_2012') mag = float(strmid(stars,34,4)) ra = float(strmid(stars,42,12)) dec = float(strmid(stars,56,10)) name = strmid(stars,99,11) ; ; the sunc variables are SUN's true RA and Dec ; sunc1 = [15.*15.297422, -18.234969] sunc2 = [15.*15.302005, -18.252430] sunc3 = [15.*15.306586, -18.269854] ; ; the srad variables are SUN's semidiameters ; srad1 = 969.92648/3600. srad2 = 969.94123/3600. srad3 = 969.95596/3600. ; xx = cos(2.*!pi*findgen(1001)/1000) yy = sin(2.*!pi*findgen(1001)/1000) plot,ra,dec,psym=3,/iso,xr=[sunc3[0]-2.5,sunc3[0]+2.5],$ yr=[sunc3[1]-2.5,sunc3[1]+2.5],xst=1,yst=1,$ xtit='Right Ascension, degrees', ytit='Declination, degrees',$ thick=thick, xthick=xthick, ythick=ythick, charthick=charthick nstars = n_elements(stars) for ii = 0, nstars-1 do oplot, [ra[ii],ra[ii]], [dec[ii],dec[ii]], $ psym = sym(1), symsiz= (9-mag[ii])/3, thick=thick oplot,sunc3[0]+srad3*xx,sunc3[1]+srad3*yy, thick=thick oplot,sunc2[0]+srad2*xx,sunc2[1]+srad2*yy, thick=thick oplot,sunc1[0]+srad1*xx,sunc1[1]+srad1*yy, thick=thick for jj = 228,232 do oplot,[jj,jj],[-22,-15],lines=1,thick=thick for jj = -20,-16 do oplot,[225,233],[jj,jj],lines=1,thick=thick xyouts,/data,228.15,-19.95,'Iota1 Lib',charsi=charsi xyouts,/data,228.35,-19.55,'25 Lib',charsi=charsi xyouts,/data,230.3,-18.1,'28 Lib',charsi=charsi xyouts,/data,228.7,-17.7,'26 Lib',charsi=charsi xyouts,/data,228.6,-18.9,'HD 135168',charsi=charsi xyouts,/data,231.4,-18.4,'HD 137318',charsi=charsi xyouts,/data,231.15,-16.9,'HD 137053',charsi=charsi xyouts,/data,228.1,-19.1,'HD 134758',charsi=charsi xyouts,/data,228.2,-18.05,'HD 134812',charsi=charsi xyouts,/data,230.0,-19.5,'HD 136205',charsi=charsi if !D.name eq 'PS' then device,/close end