logo kso logo uni graz

20160711 - Filament data for 08 UTC
Available data for 20160711: »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  320 1171 (N13E50 L=206)   555     84        2 ( 300/1127- 346/1220)  80.5 E51-E47 N10-N16
      2  635  972 (N01E25 L=231)   337     93        2 ( 608/ 922- 659/1007) -76.0 E26-E23 S01-N03
      3  819  902 (S03E13 L=242)   242     46        2 ( 801/ 871- 841/ 930) -76.0 E13-E11 S05-S01
      4 1300  714 (S16W17 L=273)   246     55        1 (1281/ 683-1315/ 749)  90.0 W15-W18 S18-S13
      5  598  609 (S22E30 L=225)   336     57        0 ( 584/ 577- 613/ 641)  59.0 E31-E28 S24-S19
  
Download Binary data for this image

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