logo kso logo uni graz

20171025 - Filament data for 09 UTC
Available data for 20171025: »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  280  926 (N17E51 L=106)   577    128        2 ( 248/ 861- 317/ 970)  56.3 E54-E47 N13-N19
      2 1335  653 (S24W08 L=165)   752    147        1 (1269/ 606-1380/ 717)  16.7 W02-W12 S26-S21
      3  858  657 (S11E19 L=138)   333     99        1 ( 810/ 638- 910/ 682) -45.0 E21-E16 S13-S08
      4  579  590 (S08E39 L=118)   397     87        1 ( 551/ 558- 607/ 623)  26.6 E41-E35 S09-S06
      5 1618  511 (S45W27 L=184)   622    116        1 (1579/ 492-1665/ 540) -12.5 W23-W32 S47-S41
  
Download Binary data for this image

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