logo kso logo uni graz

20190606 - Filament data for 09 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  525 1204 (N03E35 L=271)   271     68        0 ( 512/1171- 536/1243) -63.4 E35-E33 N01-N05
      2  629 1112 (S01E26 L=280)  1065    328        2 ( 507/1043- 730/1207)  37.6 E33-E20 S06-N06
      3  974 1038 (S00E03 L=302)   202     36        0 ( 956/1010- 992/1061)  90.0 E04-E02 S01-N01
      4  905  949 (S06E06 L=299)   294     71        3 ( 871/ 922- 945/ 975)  26.6 E08-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