logo kso logo uni graz

20211218 - Filament data for 08 UTC
Available data for 20211218: »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 1158 1832 (N53W25 L=347)   556     70        1 (1131/1799-1198/1856)   0.0 W21-W30 N50-N55
      2  671 1442 (N27E20 L=302)   514    104        1 ( 617/1419- 730/1462)   6.3 E24-E15 N26-N28
      3  559  626 (S21E35 L=287)   256     51        1 ( 541/ 600- 582/ 651) -76.0 E36-E33 S23-S19
      4  964  553 (S30E09 L=314)   493    188        1 ( 881/ 504-1043/ 603)  21.0 E15-E02 S32-S27
      5  813  476 (S34E21 L=301)   329     56        0 ( 777/ 458- 846/ 493) -21.8 E23-E18 S35-S32
  
Download Binary data for this image

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