logo kso logo uni graz

20150912 - Filament data for 06 UTC
Available data for 20150912: »05 UTC   »06 UTC   »07 UTC   »08 UTC   »09 UTC   »10 UTC   »11 UTC   »12 UTC   »13 UTC   »14 UTC   »15 UTC   »16 UTC  
Click on image to open sensitive map!
 
  Color  xc   yc  (LatLon LCarr)  Area Length Branches (  x0/y0     x1/y1  )  Tilt Location
      1 1837 1003 (S17W54 L=349)  1673    343        1 (1780/ 920-1925/1078)   8.1 W46-W67 S20-S14
      2 1317  857 (S09W13 L=307)   301    102        0 (1274/ 814-1336/ 890) -68.2 W10-W13 S12-S07
      3  735  672 (S06E26 L=269)   506    175        0 ( 661/ 648- 821/ 699)   0.0 E30-E19 S07-S05
      4 1621  632 (S33W30 L=324)   323     73        0 (1582/ 603-1657/ 659)   9.5 W26-W32 S33-S32
      5  453  386 (S19E59 L=235)   840    125        1 ( 407/ 344- 499/ 416) -71.6 E62-E54 S22-S16
  
Download Binary data for this image

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