logo kso logo uni graz

20180509 - Filament data for 12 UTC
Available data for 20180509: »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  994 1742 (N41E25 L= 67)   409     52        0 ( 963/1725-1029/1759)  36.9 E27-E22 N39-N43
      2 1617 1349 (N31W31 L=123)   326     82        0 (1584/1327-1650/1364)  26.6 W28-W34 N28-N33
      3  352  518 (S53E45 L= 47)  1071    182        1 ( 298/ 493- 418/ 548)   0.0 E51-E36 S54-S50
  
Download Binary data for this image

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