logo kso logo uni graz

20170707 - Latest Filament data
Available data for 20170707: »06 UTC   »07 UTC   »08 UTC   »09 UTC   »10 UTC   »11 UTC   »15 UTC   »16 UTC  
Click on image to open sensitive map!
 
  Color  xc   yc  (LatLon LCarr)  Area Length Branches (  x0/y0     x1/y1  )  Tilt Location
      1  602 1475 (N32E32 L=135)   390     72        2 ( 573/1441- 638/1503)   0.0 E34-E28 N29-N34
      2 1731 1460 (N29W57 L=223)  1012    254        0 (1688/1422-1791/1490)  13.0 W51-W64 N27-N30
      3  572  588 (S25E32 L=134)   281     56        2 ( 544/ 570- 601/ 608) -11.3 E34-E29 S25-S23
      4 1401  314 (S47W35 L=201)   547    178        0 (1386/ 259-1414/ 361) -51.3 W31-W39 S52-S42
  
Download Binary data for this image

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