logo kso logo uni graz

20220107 - Filament data for 12 UTC
Available data for 20220107: »08 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  401  681 (S25E45 L= 12)   367     85        0 ( 355/ 661- 447/ 705) -14.0 E48-E40 S26-S23
      2  408  509 (S36E51 L=  6)   696    125        2 ( 387/ 437- 444/ 553)  53.1 E55-E45 S41-S33
      3  705  294 (S54E31 L= 25)   660     96        0 ( 664/ 273- 757/ 326) -20.6 E34-E25 S55-S50
      4  860  265 (S56E15 L= 41)   558     51        0 ( 839/ 236- 888/ 304) -81.9 E17-E12 S59-S52
  
Download Binary data for this image

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