logo kso logo uni graz

20190606 - Filament data for 10 UTC
Available data for 20190606: »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 1403 1654 (N49W20 L=325)   309     56        1 (1386/1625-1428/1672)  45.0 W18-W23 N46-N50
      2  533 1197 (N03E34 L=271)   268     67        0 ( 520/1160- 544/1237) -68.2 E35-E32 N00-N05
      3  641 1111 (S01E25 L=280)  1091    322        2 ( 517/1043- 736/1210)  42.5 E32-E20 S06-N06
      4  981 1032 (S00E03 L=302)   216     59        0 ( 964/1000-1001/1059)  90.0 E03-E01 S02-N01
      5  914  943 (S07E05 L=299)   299     63        1 ( 883/ 916- 951/ 969)  26.6 E07-E03 S08-S04
  
Download Binary data for this image

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