logo kso logo uni graz

20220316 - Filament data for 10 UTC
Available data for 20220316: »10 UTC   »11 UTC   »12 UTC   »13 UTC   »14 UTC  
Click on image to open sensitive map!
 
  Color  xc   yc  (LatLon LCarr)  Area Length Branches (  x0/y0     x1/y1  )  Tilt Location
      1 1411 1754 (N53W04 L=246)  1326    197        1 (1331/1719-1501/1790)   6.7 E04-W13 N49-N55
      2  929 1625 (N25E24 L=219)   556    140        0 ( 883/1558- 956/1666) -32.0 E27-E19 N21-N27
      3 1791 1215 (N27W46 L=288)   644    127        1 (1759/1159-1819/1271) -35.5 W42-W49 N24-N29
      4  164 1137 (S19E67 L=175)   457     64        0 ( 146/1102- 191/1159)  38.7 E69-E63 S21-S17
      5 1409  365 (S32W51 L=293)   308     33        0 (1379/ 351-1433/ 379)  11.3 W48-W53 S32-S30
  
Download Binary data for this image

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