logo kso logo uni graz

20140606 - Filament data for 07 UTC
Available data for 20140606: »05 UTC   »06 UTC   »07 UTC   »08 UTC   »09 UTC   »10 UTC   »11 UTC   »12 UTC   »13 UTC  
Click on image to open sensitive map!
 
  Color  xc   yc  (LatLon LCarr)  Area Length Branches (  x0/y0     x1/y1  )  Tilt Location
      1  407 1579 (N25E57 L=231)  1169    200        2 ( 340/1490- 482/1659)  85.2 E60-E51 N18-N30
      2  898 1331 (N17E13 L=275)   303    171        1 ( 820/1281- 940/1361)   7.1 E17-E09 N13-N18
      3  700 1100 (S00E21 L=267)  1193    415        2 ( 630/ 949- 784/1289) -54.8 E26-E13 S08-N10
      4  257 1012 (S12E54 L=234)   322    144        1 ( 221/1000- 308/1027)  12.5 E57-E48 S13-S10
  
Download Binary data for this image

» All Filament Data of 20140606 ...
IDL code for reading binary data:
    OPENR, u, binfile, /COMP, /GET_LUN
    head = FLTARR(6) ;[xsize,ysize,radius,hh,mm,ss]
    READU, u, head
    data = INTARR(FIX(head[0]),FIX(head[1]))
    READU, u, data
    FREE_LUN, u
    
  • each filament has the value of Fil_ID
  • all values are in pixel
to get the area of a filament:
  c = WHERE(data EQ Fil_ID, area)
  f = '(2(A,I6))'
  PRINT, FORM=f, "Area of Fil_ID", Fil_ID," =", area 
be careful: y-origin is upper left! you can transpose the data:
  data = ROTATE(data,7)
  Solar_y = 2048-Solar_y