logo kso logo uni graz

20210730 - Filament data for 06 UTC
Available data for 20210730: »04 UTC   »05 UTC   »06 UTC   »07 UTC   »08 UTC   »09 UTC   »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 1476  814 (S13W27 L= 51)   515    169        1 (1420/ 777-1533/ 841) -14.0 W22-W30 S14-S10
      2 1703  654 (S27W47 L= 71)   465     32        0 (1679/ 636-1734/ 675) -23.2 W44-W51 S28-S25
      3 1164  528 (S28W04 L= 28)   737    201        2 (1115/ 458-1207/ 633)  59.7 W00-W07 S32-S20
      4 1177  226 (S55W02 L= 26)   464     50        0 (1145/ 213-1213/ 239) -23.2 E01-W06 S56-S53
  
Download Binary data for this image

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