logo kso logo uni graz

20201127 - Latest Filament data
Available data for 20201127: »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 1319 1709 (N38W39 L= 53)   327     97        0 (1269/1694-1363/1725) -23.2 W34-W41 N35-N39
      2  638  553 (S20E34 L=340)   571    144        2 ( 582/ 510- 694/ 596) -60.3 E38-E30 S23-S16
      3  820  562 (S23E22 L=352)   213     69        1 ( 789/ 538- 854/ 587) -45.0 E23-E19 S24-S20
      4  970  377 (S38E18 L=356)   340     59        0 ( 944/ 353- 995/ 405)  45.0 E20-E15 S39-S35
      5  740  248 (S43E45 L=329)   815     88        1 ( 720/ 210- 765/ 296)  53.1 E49-E40 S46-S38
  
Download Binary data for this image

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