logo kso logo uni graz

20210120 - Filament data for 13 UTC
Available data for 20210120: »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  356  820 (S22E45 L=337)   983    227        0 ( 318/ 716- 394/ 921) -90.0 E47-E42 S28-S15
      2  978  715 (S24E00 L= 22)   276     48        0 ( 953/ 691-1000/ 745)  71.6 E01-W01 S25-S22
      3 1205  367 (S45W24 L= 46)   518     85        1 (1181/ 327-1230/ 412) -40.6 W20-W27 S48-S42
      4 1270  358 (S45W30 L= 52)   568     80        0 (1249/ 318-1294/ 403) -49.4 W26-W33 S48-S41
  
Download Binary data for this image

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