logo kso logo uni graz

20171009 - Filament data for 12 UTC
Available data for 20171009: »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 1330 1630 (N30W40 L= 47)   365     76        1 (1289/1613-1370/1644) -31.0 W37-W43 N28-N31
      2 1489 1574 (N22W47 L= 54)   508     82        2 (1450/1544-1523/1597) -59.0 W44-W49 N19-N24
      3  220  953 (N21E56 L=310)   451     98        2 ( 207/ 902- 244/ 997)  71.6 E57-E53 N18-N24
      4  809  278 (S33E40 L=327)   447     43        0 ( 783/ 261- 839/ 296) -11.3 E42-E37 S34-S30
  
Download Binary data for this image

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