logo kso logo uni graz

20210120 - Filament data for 12 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  352  815 (S22E46 L=337)   984    232        1 ( 315/ 714- 391/ 920)  85.6 E48-E42 S28-S15
      2  973  723 (S24E01 L= 22)   332     79        0 ( 946/ 691- 998/ 760)  76.0 E02-W00 S25-S21
      3 1205  369 (S45W24 L= 47)   531     83        0 (1181/ 328-1229/ 414) -32.0 W19-W27 S48-S41
      4 1280  360 (S45W31 L= 54)   532     88        1 (1250/ 326-1322/ 402) -21.8 W26-W36 S47-S41
  
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