logo kso logo uni graz

20130630 - Filament data for 11 UTC
Available data for 20130630: »05 UTC   »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  607 1381 (N23E31 L= 74)   686    230        0 ( 506/1361- 713/1411)  -3.4 E39-E22 N21-N24
      2  240  676 (S24E64 L= 41)   859     64        3 ( 213/ 649- 269/ 713) -15.9 E67-E59 S25-S21
      3 1312  495 (S31W23 L=128)   360     83        1 (1287/ 448-1340/ 534)  90.0 W21-W24 S34-S27
      4  786  408 (S40E16 L= 88)   325     65        1 ( 770/ 376- 810/ 433) -78.7 E17-E14 S42-S37
  
Download Binary data for this image

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