logo kso logo uni graz

20211120 - Filament data for 08 UTC
Available data for 20211120: »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 1430 1647 (N30W45 L= 16)   374     82        1 (1395/1618-1473/1670)   6.3 W40-W49 N28-N31
      2  834 1584 (N40W00 L=331)   397     67        0 ( 809/1551- 864/1618) -80.5 E01-W01 N37-N43
      3 1708  646 (S36W42 L= 14)   437     43        1 (1686/ 623-1731/ 673)  56.3 W40-W45 S37-S33
      4  644  334 (S32E46 L=285)  1787    301        2 ( 526/ 273- 723/ 427)   7.1 E58-E34 S36-S27
      5  995  218 (S50E28 L=303)  1070    201        0 ( 954/ 134-1034/ 326)  58.2 E37-E22 S60-S39
  
Download Binary data for this image

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