logo kso logo uni graz

20210919 - Latest Filament data
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  703 1380 (N36E11 L= 57)   360    100        2 ( 654/1355- 758/1396)  -7.1 E15-E07 N34-N37
      2 1333  432 (S38W03 L= 72)   295     52        0 (1309/ 409-1357/ 460)  21.8 W00-W05 S39-S36
      3  682  421 (S20E39 L= 29)   392     81        1 ( 654/ 383- 707/ 455)  26.6 E43-E35 S22-S18
      4  871  319 (S32E32 L= 36)   296     35        1 ( 852/ 299- 895/ 339) -45.0 E34-E30 S33-S30
  
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