logo kso logo uni graz

20220418 - Filament data for 09 UTC
Available data for 20220418: »05 UTC   »06 UTC   »07 UTC   »08 UTC   »09 UTC   »10 UTC   »11 UTC  
Click on image to open sensitive map!
 
  Color  xc   yc  (LatLon LCarr)  Area Length Branches (  x0/y0     x1/y1  )  Tilt Location
      1 1274 1828 (N57E15 L=152)   625     54        0 (1241/1807-1306/1848)  74.1 E17-E12 N53-N60
      2  428 1657 (N16E65 L=103)  4091    258        4 ( 330/1580- 513/1745)  65.2 E76-E58 N10-N23
      3 1485 1564 (N42W14 L=182)   342     34        0 (1458/1546-1507/1582)  36.9 W11-W16 N40-N44
      4  429 1241 (S08E43 L=125)   298     52        1 ( 400/1224- 465/1255)  11.3 E44-E39 S09-S07
      5  355  569 (S53E44 L=124)   556     57        1 ( 324/ 541- 382/ 592)   0.0 E49-E39 S54-S50
  
Download Binary data for this image

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