logo kso logo uni graz

20130328 - Filament data for 06 UTC
Available data for 20130328: »06 UTC   »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  906 1838 (N41E41 L=230)  1652    181        3 ( 825/1777- 981/1877)  -8.1 E51-E30 N37-N43
      2  715 1673 (N23E40 L=230)  2221    539        1 ( 525/1553- 892/1733)   3.9 E52-E23 N15-N28
      3 1616 1603 (N50W27 L=297)   562     66        0 (1578/1578-1644/1625)  20.6 W22-W30 N47-N52
      4  184 1223 (S15E67 L=204)   848    102        1 ( 162/1175- 201/1271)  90.0 E69-E64 S17-S11
      5  735  816 (S26E11 L=259)   349     84        1 ( 711/ 773- 767/ 857) -78.7 E12-E09 S28-S23
  
Download Binary data for this image

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