logo kso logo uni graz

20171021 - Filament data for 10 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  815 1632 (N47W07 L=216)   639    155        1 ( 767/1572- 884/1691)  13.0 W01-W14 N44-N49
      2 1242 1386 (N19W23 L=232)  1388    380        3 (1078/1310-1425/1434) -45.0 W14-W31 N09-N26
      3  645  352 (S24E46 L=163)   511    137        0 ( 610/ 319- 681/ 396)  24.0 E49-E40 S25-S21
      4 1020  250 (S42E28 L=181)  1117    148        3 ( 941/ 226-1098/ 286) -31.0 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