logo kso logo uni graz

20210119 - Filament data for 08 UTC
Available data for 20210119: »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  228  751 (S26E61 L=338)   430     68        0 ( 210/ 712- 247/ 779)  29.7 E64-E57 S27-S23
      2  731  755 (S23E17 L= 21)   261     50        1 ( 710/ 731- 762/ 778) -14.0 E18-E14 S24-S21
      3 1019  412 (S44W06 L= 45)   471    104        1 ( 995/ 370-1046/ 451) -80.5 W03-W08 S47-S41
      4 1099  408 (S44W13 L= 51)   239     58        2 (1081/ 377-1112/ 438) -53.1 W11-W14 S45-S41
  
Download Binary data for this image

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