logo kso logo uni graz

20140606 - Filament data for 05 UTC
Available data for 20140606: »05 UTC   »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  402 1583 (N25E58 L=231)  1198    176        2 ( 333/1495- 467/1659)  80.5 E61-E54 N18-N30
      2  883 1341 (N17E14 L=275)   301    144        0 ( 814/1298- 921/1367)   8.1 E17-E10 N14-N18
      3  690 1061 (S03E21 L=268)  1084    284        1 ( 616/ 951- 770/1200) -58.4 E26-E14 S08-N05
      4 1729  637 (S13W58 L=346)   492     89        0 (1700/ 593-1750/ 683)  71.6 W56-W59 S15-S09
  
Download Binary data for this image

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