logo kso logo uni graz

20180117 - Filament data for 09 UTC
Available data for 20180117: »09 UTC   »10 UTC   »11 UTC  
Click on image to open sensitive map!
 
  Color  xc   yc  (LatLon LCarr)  Area Length Branches (  x0/y0     x1/y1  )  Tilt Location
      1 1088 1839 (N53E02 L=128)   612     85        1 (1050/1816-1137/1857)  14.0 E05-W03 N50-N55
      2 1208  937 (S09W12 L=142)   474    117        0 (1153/ 909-1269/ 965)  15.9 W08-W15 S10-S07
      3 1788  724 (S16W58 L=188)   450     83        0 (1753/ 689-1821/ 754)  45.0 W54-W60 S18-S13
      4 1227  329 (S49W25 L=155)   643    128        0 (1168/ 310-1291/ 355)   0.0 W18-W30 S49-S47
  
Download Binary data for this image

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