logo kso logo uni graz

20210919 - Filament data for 07 UTC
Available data for 20210919: »07 UTC   »08 UTC   »09 UTC  
Click on image to open sensitive map!
 
  Color  xc   yc  (LatLon LCarr)  Area Length Branches (  x0/y0     x1/y1  )  Tilt Location
      1  692 1373 (N36E12 L= 57)   378    110        0 ( 642/1351- 746/1390)  -6.3 E16-E07 N34-N36
      2 1325  432 (S38W03 L= 72)   298     41        1 (1298/ 411-1351/ 458)   0.0 W00-W04 S39-S35
      3  674  416 (S21E40 L= 29)   324     68        1 ( 653/ 392- 698/ 445)  18.4 E42-E36 S22-S19
      4  873  339 (S31E31 L= 39)   579    121        1 ( 845/ 287- 904/ 398)  31.0 E36-E26 S34-S26
  
Download Binary data for this image

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