logo kso logo uni graz

20210728 - Filament data for 07 UTC
Available data for 20210728: »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  938 1462 (N34E01 L= 48)   363     89        0 ( 914/1424- 964/1497)  68.2 E03-W00 N31-N36
      2  628 1347 (N29E25 L= 25)   265     91        0 ( 610/1309- 648/1386) -59.0 E26-E23 N26-N31
      3  837  642 (S17E16 L= 34)   222     57        0 ( 815/ 620- 865/ 662)  26.6 E17-E13 S18-S15
      4  535  575 (S19E39 L= 11)   421     55        1 ( 514/ 546- 556/ 608)  38.7 E41-E36 S21-S16
      5  801  519 (S25E20 L= 29)   311     39        0 ( 783/ 492- 816/ 548)  76.0 E21-E18 S26-S22
      6  723  354 (S37E32 L= 18)   322     38        2 ( 696/ 338- 751/ 374) -14.0 E34-E30 S38-S35
  
Download Binary data for this image

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