logo kso logo uni graz

20151104 - Filament data for 07 UTC
Available data for 20151104: »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 1425 1720 (N33W51 L=  5)   420    104        1 (1401/1691-1455/1741)   8.1 W47-W54 N31-N33
      2 1454 1267 (N06W31 L=346)   866    226        2 (1363/1182-1496/1325)  69.4 W25-W33 N01-N10
      3  597  463 (S18E42 L=272)   406     68        2 ( 574/ 437- 621/ 489)  31.0 E44-E39 S19-S16
      4  510  413 (S19E52 L=263)   739    227        1 ( 476/ 347- 541/ 464)  30.3 E58-E46 S23-S16
      5  564  394 (S22E48 L=266)   328     88        1 ( 544/ 373- 598/ 422) -56.3 E50-E46 S23-S19
  
Download Binary data for this image

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