logo kso logo uni graz

20171025 - Filament data for 08 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  279  932 (N18E51 L=106)   425     91        1 ( 260/ 892- 312/ 969)  53.1 E53-E47 N15-N19
      2 1329  649 (S25W08 L=165)   679    155        1 (1266/ 604-1377/ 718)  26.6 W02-W11 S26-S21
      3  852  654 (S11E20 L=138)   306     88        1 ( 814/ 636- 903/ 680) -59.0 E21-E17 S13-S08
      4  577  589 (S08E39 L=119)   369     84        1 ( 548/ 557- 602/ 621)  21.8 E41-E36 S09-S06
      5 1611  509 (S44W26 L=184)   584    105        1 (1570/ 488-1654/ 541) -12.5 W22-W31 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