logo kso logo uni graz

20210120 - Filament data for 08 UTC
Available data for 20210120: »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  323  834 (S21E48 L=337)   406    111        0 ( 302/ 784- 356/ 878) -68.2 E50-E45 S23-S18
      2  937  731 (S23E03 L= 22)   252     49        1 ( 917/ 706- 961/ 759)  45.0 E04-E01 S25-S21
      3 1269  371 (S44W29 L= 54)   435    101        1 (1230/ 347-1318/ 409) -21.8 W24-W34 S45-S41
      4 1183  370 (S45W22 L= 47)   374     72        0 (1164/ 342-1209/ 408) -39.8 W18-W25 S47-S42
  
Download Binary data for this image

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