logo kso logo uni graz

20210709 - Filament data for 08 UTC
Available data for 20210709: »06 UTC   »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  474 1621 (N43E53 L=248)   657     65        1 ( 437/1593- 506/1642) -14.0 E59-E47 N40-N44
      2  731 1458 (N31E21 L=280)   259     68        2 ( 708/1430- 757/1486) -36.9 E23-E19 N29-N33
      3 1350  479 (S33W24 L=325)   332    103        0 (1304/ 457-1394/ 506)  23.2 W20-W27 S34-S30
      4 1122  293 (S48W09 L=309)   451     91        1 (1082/ 281-1170/ 311)  -6.3 W04-W13 S49-S46
  
Download Binary data for this image

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