logo kso logo uni graz

20130730 - Filament data for 11 UTC
Available data for 20130730: »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 1636 1405 (N21W50 L=118)   319     92        0 (1597/1386-1678/1427)   0.0 W45-W54 N19-N21
      2 1603  822 (S14W36 L=104)   850    226        2 (1550/ 727-1662/ 915)  48.0 W32-W41 S19-S08
      3  310  687 (S10E56 L= 12)   520    141        0 ( 274/ 647- 330/ 736)  45.0 E61-E53 S12-S06
      4  312  598 (S16E60 L=  9)   646    126        1 ( 277/ 552- 369/ 632) -35.5 E62-E55 S19-S13
      5  684  512 (S24E30 L= 39)   308     66        0 ( 644/ 496- 719/ 525) -21.8 E32-E27 S24-S22
  
Download Binary data for this image

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