logo kso logo uni graz

20161022 - Filament data for 12 UTC
Available data for 20161022: »06 UTC   »07 UTC   »08 UTC   »09 UTC   »10 UTC   »11 UTC   »12 UTC   »14 UTC  
Click on image to open sensitive map!
 
  Color  xc   yc  (LatLon LCarr)  Area Length Branches (  x0/y0     x1/y1  )  Tilt Location
      1 1475 1728 (N31W56 L= 28)   744    201        1 (1416/1698-1523/1763) -10.3 W50-W61 N29-N32
      2 1504 1591 (N23W49 L= 21)  1545    255        5 (1411/1548-1590/1621) -42.0 W42-W54 N17-N26
      3 1400  782 (S18W15 L=347)   434    162        0 (1353/ 706-1435/ 866)  37.9 W10-W19 S21-S14
      4 1165  504 (S29E06 L=326)   272     87        1 (1133/ 481-1205/ 532) -68.2 E08-E04 S31-S26
      5  619  260 (S30E54 L=278)   777    203        2 ( 576/ 228- 667/ 293)  14.0 E59-E47 S32-S28
  
Download Binary data for this image

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