logo kso logo uni graz

20161226 - Filament data for 07 UTC
Available data for 20161226: »07 UTC   »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  779 1598 (N36E15 L=183)   365     50        1 ( 743/1571- 813/1621)   0.0 E17-E12 N33-N37
      2 1002 1005 (S03E01 L=197)   267     66        0 ( 982/ 964-1019/1050)  68.2 E02-W00 S05-N00
      3 1050  848 (S13W01 L=199)   275     59        1 (1024/ 816-1071/ 884)  76.0 W00-W02 S14-S10
      4  660  519 (S32E29 L=169)   355     53        0 ( 628/ 492- 693/ 542) -26.6 E31-E26 S33-S30
      5  520  491 (S33E41 L=157)  1047    253        2 ( 456/ 430- 596/ 536)  21.8 E48-E33 S36-S29
  
Download Binary data for this image

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