logo kso logo uni graz

20160908 - Latest Filament data
Available data for 20160908: »07 UTC   »08 UTC   »09 UTC   »10 UTC   »11 UTC   »12 UTC   »13 UTC   »14 UTC   »15 UTC   »16 UTC  
Click on image to open sensitive map!
 
  Color  xc   yc  (LatLon LCarr)  Area Length Branches (  x0/y0     x1/y1  )  Tilt Location
      1 1461 1553 (N25W44 L=235)  4141    875        8 (1181/1486-1721/1593) -51.1 W22-W63 N14-N34
      2 1712 1323 (N05W53 L=244)   372     56        1 (1687/1294-1735/1348) -63.4 W51-W54 N03-N07
      3  561 1194 (N27E26 L=165)   249     74        0 ( 529/1169- 598/1213)   9.5 E28-E22 N26-N27
      4 1193 1063 (N05W10 L=202)   959    251        2 (1081/1022-1319/1110) -28.3 W05-W18 N01-N10
      5  805  845 (N02E17 L=174)   513    224        0 ( 767/ 762- 879/ 961) -85.6 E17-E14 S04-N09
  
Download Binary data for this image

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