logo kso logo uni graz

20200206 - Filament data for 08 UTC
Available data for 20200206: »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  317  679 (S37E51 L=261)   431     74        0 ( 292/ 648- 350/ 710)  26.6 E55-E46 S38-S34
      2  819  545 (S39E06 L=306)   288     65        0 ( 788/ 510- 849/ 577)  59.0 E08-E03 S41-S36
      3 1077  466 (S40W15 L=327)   235     31        0 (1055/ 448-1100/ 485) -14.0 W13-W17 S40-S38
      4  971  451 (S43W08 L=320)   333     71        0 ( 928/ 438-1010/ 464)  18.4 W04-W10 S43-S41
  
Download Binary data for this image

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