logo kso logo uni graz

20210729 - Filament data for 11 UTC
Available data for 20210729: »05 UTC   »06 UTC   »07 UTC   »08 UTC   »09 UTC   »10 UTC   »11 UTC   »12 UTC   »13 UTC   »14 UTC   »15 UTC   »16 UTC   »17 UTC  
Click on image to open sensitive map!
 
  Color  xc   yc  (LatLon LCarr)  Area Length Branches (  x0/y0     x1/y1  )  Tilt Location
      1  823 1371 (N29E10 L= 24)   318    143        0 ( 776/1316- 866/1418) -49.4 E13-E07 N25-N32
      2 1369  766 (S14W19 L= 54)   362    122        0 (1311/ 724-1416/ 799) -40.6 W15-W22 S17-S11
      3 1549  764 (S17W32 L= 67)   283     63        1 (1518/ 742-1578/ 786) -31.0 W29-W34 S18-S14
      4 1017  515 (S27E06 L= 29)   698    190        1 ( 975/ 442-1050/ 607)  61.4 E10-E02 S32-S20
  
Download Binary data for this image

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