logo kso logo uni graz

20130718 - Latest Filament data
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 1447 1254 (N16W29 L=254)   328    176        0 (1405/1178-1501/1304) -60.9 W27-W32 N10-N19
      2 1037  871 (S05E00 L=225)   357    157        1 ( 966/ 847-1099/ 902) -23.2 E04-W03 S06-S02
      3  475  568 (S23E43 L=182)  1538    260        7 ( 413/ 476- 550/ 670)  32.3 E53-E34 S29-S15
      4 1741  629 (S27W55 L=279)   446     40        2 (1721/ 606-1759/ 658) -76.0 W52-W57 S28-S24
  
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