logo kso logo uni graz

20210814 - Filament data for 08 UTC
Available data for 20210814: »06 UTC   »07 UTC   »08 UTC   »09 UTC   »10 UTC   »11 UTC   »12 UTC   »13 UTC   »14 UTC  
Click on image to open sensitive map!
 
  Color  xc   yc  (LatLon LCarr)  Area Length Branches (  x0/y0     x1/y1  )  Tilt Location
      1  422 1534 (N49E47 L=138)   394     32        1 ( 399/1511- 439/1554) -29.7 E50-E43 N46-N50
      2 1044 1309 (N23W06 L=191)   244     86        1 (1013/1286-1084/1337) -36.9 W04-W08 N21-N25
      3 1496  462 (S40W25 L=210)   487     60        0 (1453/ 443-1532/ 477) -26.6 W21-W29 S42-S37
      4 1104  269 (S47E11 L=174)   361     48        0 (1084/ 243-1122/ 299)  80.5 E12-E09 S49-S43
  
Download Binary data for this image

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