logo kso logo uni graz

20211216 - Filament data for 09 UTC
Available data for 20211216: »07 UTC   »08 UTC   »09 UTC   »10 UTC   »11 UTC   »12 UTC  
Click on image to open sensitive map!
 
  Color  xc   yc  (LatLon LCarr)  Area Length Branches (  x0/y0     x1/y1  )  Tilt Location
      1  483 1675 (N48E43 L=305)   556     65        1 ( 454/1649- 506/1706)  90.0 E46-E38 N45-N51
      2  320 1388 (N28E49 L=299)  1014    223        0 ( 230/1362- 418/1424) -14.6 E62-E39 N25-N31
      3  433  607 (S20E46 L=302)   487     60        3 ( 401/ 582- 472/ 632) -21.8 E48-E42 S21-S18
      4  300  575 (S21E61 L=287)   706     83        4 ( 263/ 535- 331/ 616)  59.0 E65-E57 S23-S18
      5  646  522 (S28E32 L=316)   259     81        1 ( 610/ 500- 677/ 543)   9.5 E35-E29 S29-S26
      6  520  390 (S36E50 L=298)   626    122        0 ( 492/ 321- 547/ 440)  31.6 E59-E44 S40-S32
  
Download Binary data for this image

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