logo kso logo uni graz

20130421 - Filament data for 08 UTC
Available data for 20130421: »06 UTC   »07 UTC   »08 UTC   »09 UTC   »10 UTC   »11 UTC   »12 UTC  
Click on image to open sensitive map!
 
  Color  xc   yc  (LatLon LCarr)  Area Length Branches (  x0/y0     x1/y1  )  Tilt Location
      1  636 1675 (N23E47 L=266)   510    121        1 ( 609/1638- 670/1721) -80.5 E49-E43 N20-N26
      2  169 1147 (S18E67 L=246)   622     95        2 ( 144/1093- 185/1190) -80.5 E71-E64 S21-S15
      3  465 1088 (S16E36 L=277)   519    154        2 ( 402/1058- 541/1113)  26.6 E40-E30 S18-S12
      4  637  894 (S22E20 L=293)   481    183        1 ( 587/ 841- 696/ 967) -21.8 E24-E14 S25-S19
      5 1411  500 (S23W41 L=354)   259     49        2 (1383/ 478-1438/ 521)  26.6 W39-W43 S24-S21
      6 1165  375 (S38W34 L=346)   582    110        2 (1110/ 345-1209/ 412)   0.0 W28-W38 S39-S35
  
Download Binary data for this image

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