logo kso logo uni graz

20210216 - Filament data for 12 UTC
Available data for 20210216: »07 UTC   »08 UTC   »09 UTC   »10 UTC   »11 UTC   »12 UTC   »13 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  342  638 (S42E48 L=340)   732    124        1 ( 281/ 619- 387/ 663)   4.4 E55-E42 S43-S40
      2  925  500 (S40W06 L= 33)   336     60        1 ( 895/ 471- 951/ 535) -31.0 W03-W08 S41-S38
      3 1005  438 (S43W14 L= 42)   541     93        1 ( 973/ 398-1035/ 482) -45.0 W10-W17 S44-S39
      4 1200  417 (S39W29 L= 57)   243     52        0 (1183/ 397-1222/ 448) -36.9 W26-W31 S40-S36
  
Download Binary data for this image

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