logo kso logo uni graz

20210824 - Filament data for 10 UTC
Available data for 20210824: »06 UTC   »07 UTC   »08 UTC   »09 UTC   »10 UTC   »11 UTC  
Click on image to open sensitive map!
 
  Color  xc   yc  (LatLon LCarr)  Area Length Branches (  x0/y0     x1/y1  )  Tilt Location
      1  729 1272 (N27E14 L= 37)   493    154        2 ( 698/1207- 765/1344) -78.7 E15-E11 N22-N32
      2 1284  749 (S15W10 L= 61)   291     91        0 (1241/ 716-1318/ 780) -63.4 W07-W11 S17-S11
      3 1539  540 (S35W26 L= 77)  1025    268        0 (1426/ 446-1621/ 611)  22.4 W16-W33 S39-S32
      4  747  335 (S32E37 L= 14)   392     74        0 ( 728/ 298- 769/ 374)  66.8 E39-E34 S35-S28
      5  775  260 (S39E41 L= 11)   432     54        0 ( 752/ 241- 802/ 281)   8.1 E43-E36 S40-S36
  
Download Binary data for this image

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