logo kso logo uni graz

20171120 - Filament data for 08 UTC
Available data for 20171120: »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 1591 1602 (N23W54 L=229)   477     74        1 (1567/1583-1622/1624) -36.9 W51-W56 N21-N24
      2 1145 1133 (N06W09 L=184)   296     74        0 (1125/1108-1177/1172) -78.7 W07-W10 N03-N08
      3  505  675 (S07E40 L=135)  1458    355        0 ( 376/ 620- 659/ 726) -22.8 E50-E30 S13-S03
      4  325  555 (S11E60 L=115)  1279    272        1 ( 296/ 492- 382/ 625)  23.2 E65-E51 S14-S08
  
Download Binary data for this image

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