logo kso logo uni graz

20130718 - Filament data for 08 UTC
Available data for 20130718: »06 UTC   »07 UTC   »08 UTC   »09 UTC   »10 UTC   »11 UTC   »12 UTC   »13 UTC   »14 UTC   »15 UTC  
Click on image to open sensitive map!
 
  Color  xc   yc  (LatLon LCarr)  Area Length Branches (  x0/y0     x1/y1  )  Tilt Location
      1  551 1186 (N16E31 L=198)   250    161        0 ( 508/1165- 625/1217)  12.5 E34-E25 N15-N18
      2  898  898 (S03E08 L=220)   312    148        0 ( 839/ 859- 960/ 932) -35.5 E11-E04 S05-N00
      3  235  640 (S18E68 L=161)   823     83        3 ( 206/ 600- 262/ 679) -68.2 E72-E64 S20-S15
      4  452  613 (S20E43 L=185)   771    137        2 ( 416/ 556- 503/ 659)  31.0 E48-E38 S23-S16
      5 1705  626 (S26W50 L=279)   425     31        1 (1688/ 604-1726/ 650) -56.3 W48-W53 S27-S24
      6  404  519 (S26E52 L=177)   705     88        1 ( 373/ 492- 449/ 548) -38.7 E56-E48 S28-S24
      7  413  427 (S33E58 L=171)   693     95        1 ( 396/ 391- 451/ 470)  37.9 E63-E53 S36-S29
  
Download Binary data for this image

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