logo kso logo uni graz

20220323 - Filament data for 09 UTC
Available data for 20220323: »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 1321 1802 (N54E08 L=142)  1019    199        1 (1238/1779-1401/1832)  34.7 E14-W00 N48-N58
      2 1252 1568 (N31E03 L=148)   343    112        0 (1204/1529-1303/1589)   0.0 E06-W01 N30-N32
      3  233 1108 (S21E57 L= 93)   504     60        0 ( 215/1077- 255/1143) -45.0 E59-E54 S22-S18
      4  889  595 (S35W05 L=156)   811    247        0 ( 825/ 501- 990/ 677) -20.6 E01-W15 S37-S31
      5 1703  650 (S06W55 L=206)   327     32        1 (1680/ 632-1724/ 670)   0.0 W53-W57 S07-S04
  
Download Binary data for this image

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