logo kso logo uni graz

20130630 - Filament data for 05 UTC
Available data for 20130630: »05 UTC   »06 UTC   »07 UTC   »08 UTC   »09 UTC   »10 UTC   »11 UTC   »12 UTC  
Click on image to open sensitive map!
 
  Color  xc   yc  (LatLon LCarr)  Area Length Branches (  x0/y0     x1/y1  )  Tilt Location
      1  581 1384 (N23E33 L= 75)   699    203        0 ( 478/1365- 670/1408)   0.0 E41-E25 N22-N24
      2 1262  728 (S15W16 L=125)   418    159        2 (1237/ 661-1292/ 803)  77.5 W15-W17 S19-S10
      3  223  674 (S24E66 L= 42)   787     54        2 ( 207/ 638- 243/ 709)  35.5 E71-E62 S26-S21
      4  745  412 (S40E20 L= 88)   481     85        1 ( 726/ 371- 770/ 456) -80.5 E21-E17 S43-S36
      5 1387  255 (S51W44 L=153)   464     43        0 (1365/ 238-1408/ 274)  -8.1 W40-W49 S53-S49
  
Download Binary data for this image

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