logo kso logo uni graz

20130718 - Filament data for 09 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  906  899 (S03E08 L=220)   347    148        0 ( 848/ 858- 972/ 933) -35.5 E11-E04 S05-N00
      2  471  637 (S18E41 L=187)   453     68        1 ( 443/ 607- 508/ 666)  15.9 E44-E37 S19-S15
      3 1709  629 (S26W51 L=279)   469     49        1 (1694/ 604-1730/ 661) -53.1 W49-W53 S27-S23
      4  408  518 (S26E52 L=176)   723     85        1 ( 377/ 492- 452/ 548) -38.7 E55-E48 S28-S24
      5 1478  458 (S36W33 L=261)   321     51        0 (1448/ 444-1507/ 474)  11.3 W30-W35 S37-S35
      6  419  427 (S33E57 L=171)   689    100        1 ( 400/ 393- 459/ 468)  36.9 E62-E53 S36-S30
  
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