logo kso logo uni graz

20160904 - Filament data for 11 UTC
Available data for 20160904: »06 UTC   »07 UTC   »08 UTC   »09 UTC   »10 UTC   »11 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  820 1224 (N23E08 L=239)  2427    726        6 ( 536/1135-1135/1316) -32.2 E26-W09 N11-N34
      2  272 1033 (N22E52 L=195)   319     67        2 ( 258/1001- 288/1070)  -8.3 E53-E49 N19-N23
      3  338  828 (N09E50 L=197)  1927    318        2 ( 264/ 731- 441/ 971) -62.1 E53-E43 N01-N18
      4  984  333 (S35E22 L=225)   545     56        1 ( 957/ 297-1006/ 367)  71.6 E23-E19 S38-S32
      5 1092  285 (S42E17 L=230)   543    110        2 (1054/ 254-1134/ 316) -76.0 E19-E14 S46-S38
  
Download Binary data for this image

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