logo kso logo uni graz

20210301 - Filament data for 15 UTC
Available data for 20210301: »06 UTC   »07 UTC   »08 UTC   »09 UTC   »10 UTC   »11 UTC   »12 UTC   »13 UTC   »14 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 1034 1903 (N53E35 L=180)  1386    150        1 ( 965/1844-1092/1944) -12.3 E48-E24 N48-N57
      2  606 1748 (N28E52 L=163)   382     34        0 ( 584/1726- 627/1767) -15.9 E55-E48 N26-N29
      3  486  524 (S51E31 L=184)   328     45        0 ( 462/ 500- 509/ 548)  45.0 E34-E27 S53-S48
      4 1192  200 (S52W53 L=268)   633     69        1 (1162/ 162-1210/ 228)  -7.6 W46-W61 S53-S49
  
Download Binary data for this image

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