logo kso logo uni graz

20210621 - Filament data for 06 UTC
Available data for 20210621: »05 UTC   »06 UTC   »07 UTC   »08 UTC   »09 UTC   »10 UTC   »11 UTC   »12 UTC   »13 UTC   »14 UTC   »15 UTC   »16 UTC   »17 UTC   »18 UTC  
Click on image to open sensitive map!
 
  Color  xc   yc  (LatLon LCarr)  Area Length Branches (  x0/y0     x1/y1  )  Tilt Location
      1  947 1633 (N41E13 L=167)   668     96        3 ( 913/1598- 988/1667) -23.2 E16-E09 N38-N43
      2 1185 1347 (N23W08 L=188)   549    220        0 (1125/1271-1263/1426) -42.0 W03-W13 N18-N28
      3 1533 1120 (N12W32 L=213)   291     39        1 (1518/1093-1552/1151) -56.3 W31-W34 N09-N13
      4  987  257 (S54W07 L=187)   405     89        1 ( 943/ 233-1028/ 282) -21.8 W01-W11 S55-S51
  
Download Binary data for this image

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