logo kso logo uni graz

20210101 - Filament data for 07 UTC
Available data for 20210101: »07 UTC   »08 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 1441  722 (S22W28 L=303)   234     58        0 (1413/ 696-1469/ 744)  45.0 W25-W29 S23-S20
      2  946  590 (S30E06 L=270)   547    165        2 ( 886/ 536-1007/ 652)  37.9 E10-E01 S33-S25
      3 1430  567 (S32W29 L=305)   652    200        1 (1395/ 465-1480/ 626)  79.7 W27-W32 S38-S27
      4  921  321 (S50E11 L=265)   716    175        0 ( 844/ 296- 991/ 367) -21.0 E17-E04 S52-S46
      5  560  292 (S51E53 L=223)   774    100        0 ( 511/ 271- 614/ 319)   7.8 E64-E42 S52-S49
  
Download Binary data for this image

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