logo kso logo uni graz

20220304 - Filament data for 11 UTC
Available data for 20220304: »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  993 1633 (N28E19 L= 21)   466    101        1 ( 968/1581-1017/1676) -50.2 E21-E15 N25-N31
      2 1490 1458 (N31W18 L= 58)   801    186        2 (1422/1379-1551/1526) -28.6 W12-W23 N26-N34
      3  184 1061 (S22E63 L=337)  1016    141        3 ( 159/ 999- 204/1135)  76.0 E66-E60 S25-S17
      4  347 1000 (S23E44 L=356)  1422    254        2 ( 276/ 932- 441/1056)  36.9 E50-E36 S27-S18
      5  345  445 (S61E60 L=340)   684    109        0 ( 325/ 415- 388/ 488) -39.8 E67-E51 S63-S57
  
Download Binary data for this image

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