logo kso logo uni graz

20130421 - Filament data for 10 UTC
Available data for 20130421: »06 UTC   »07 UTC   »08 UTC   »09 UTC   »10 UTC   »11 UTC   »12 UTC  
Click on image to open sensitive map!
 
  Color  xc   yc  (LatLon LCarr)  Area Length Branches (  x0/y0     x1/y1  )  Tilt Location
      1  647 1663 (N22E45 L=266)   361     75        1 ( 628/1634- 670/1695) -45.0 E47-E41 N20-N24
      2  171 1142 (S18E66 L=245)  1469    144        8 ( 140/1079- 201/1212) -41.2 E73-E61 S21-S14
      3  463 1078 (S16E36 L=276)   453    116        0 ( 415/1051- 527/1109)  40.6 E39-E31 S18-S12
      4  636  911 (S22E20 L=292)   312    119        0 ( 603/ 865- 668/ 962) -29.7 E23-E16 S23-S19
      5 1433  513 (S21W42 L=354)   273    104        2 (1406/ 477-1467/ 542)  90.0 W40-W44 S23-S19
      6 1186  362 (S38W36 L=347)   755    116        4 (1140/ 334-1249/ 400)   0.0 W31-W41 S39-S36
  
Download Binary data for this image

» All Filament Data of 20130421 ...
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