logo kso logo uni graz

20210623 - Filament data for 07 UTC
Available data for 20210623: »06 UTC   »07 UTC   »08 UTC   »09 UTC   »10 UTC   »11 UTC   »12 UTC   »13 UTC  
Click on image to open sensitive map!
 
  Color  xc   yc  (LatLon LCarr)  Area Length Branches (  x0/y0     x1/y1  )  Tilt Location
      1 1253 1585 (N41W13 L=166)   456    101        2 (1216/1557-1301/1619) -15.9 W10-W17 N38-N43
      2 1038 1584 (N39E04 L=149)   310     67        0 (1016/1552-1068/1615)  68.2 E05-E02 N36-N41
      3 1583 1275 (N21W37 L=190)   892    211        0 (1514/1201-1665/1350) -36.0 W32-W43 N17-N25
      4  304  556 (S35E60 L= 93)   580     60        1 ( 277/ 532- 337/ 578)  13.0 E67-E54 S37-S33
  
Download Binary data for this image

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