logo kso logo uni graz

20151104 - Filament data for 11 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 1452 1735 (N32W53 L=  6)   373    115        1 (1424/1705-1477/1762)   7.1 W49-W57 N31-N33
      2 1485 1277 (N06W33 L=346)   850    240        1 (1393/1198-1525/1339) -58.0 W28-W35 N01-N10
      3  614  469 (S18E41 L=272)   511    151        2 ( 588/ 413- 647/ 511)  50.2 E44-E37 S21-S15
      4  525  410 (S20E50 L=262)   711    172        2 ( 491/ 358- 554/ 469)  31.0 E55-E45 S23-S16
      5  567  411 (S21E47 L=265)   293     12        0 ( 548/ 391- 587/ 432)  71.6 E48-E45 S22-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