logo kso logo uni graz

20160419 - Filament data for 12 UTC
Available data for 20160419: »11 UTC   »12 UTC   »13 UTC   »14 UTC  
Click on image to open sensitive map!
 
  Color  xc   yc  (LatLon LCarr)  Area Length Branches (  x0/y0     x1/y1  )  Tilt Location
      1  618 1642 (N20E45 L=226)   497    128        1 ( 600/1597- 649/1689) -54.5 E47-E42 N16-N23
      2 1321 1316 (N19W09 L=280)   353    114        1 (1277/1251-1373/1354) -20.6 W05-W13 N16-N20
      3  768 1302 (N03E22 L=249)   219     41        0 ( 743/1282- 794/1322)  45.0 E23-E20 N02-N05
      4  438 1211 (S09E41 L=230)   334     66        1 ( 408/1193- 466/1233)  26.6 E42-E38 S10-S08
      5  322  686 (S44E43 L=228)   383     71        0 ( 303/ 653- 336/ 716) -90.0 E44-E41 S46-S41
  
Download Binary data for this image

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