logo kso logo uni graz

20171021 - Filament data for 09 UTC
Available data for 20171021: »06 UTC   »07 UTC   »08 UTC   »09 UTC   »10 UTC   »11 UTC   »12 UTC   »13 UTC   »14 UTC  
Click on image to open sensitive map!
 
  Color  xc   yc  (LatLon LCarr)  Area Length Branches (  x0/y0     x1/y1  )  Tilt Location
      1  809 1631 (N47W06 L=216)   661    161        1 ( 756/1572- 879/1692)  15.9 W00-W14 N44-N50
      2 1206 1392 (N20W21 L=231)  1156    274        1 (1064/1354-1335/1433) -42.7 W14-W27 N14-N26
      3  639  352 (S24E46 L=164)   508    157        0 ( 605/ 317- 677/ 398)  21.8 E50-E40 S25-S21
      4 1016  248 (S42E29 L=181)  1145    167        1 ( 932/ 224-1096/ 283) -24.4 E34-E23 S45-S39
  
Download Binary data for this image

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