logo kso logo uni graz

20150602 - Filament data for 06 UTC
Available data for 20150602: »06 UTC   »07 UTC   »08 UTC   »09 UTC   »10 UTC   »11 UTC  
Click on image to open sensitive map!
 
  Color  xc   yc  (LatLon LCarr)  Area Length Branches (  x0/y0     x1/y1  )  Tilt Location
      1  610 1137 (S01E27 L=176)   375    111        1 ( 559/1116- 673/1154)  15.9 E30-E23 S02-N01
      2  150 1019 (S15E67 L=137)   619    157        0 ( 119/ 999- 182/1040)  -5.7 E71-E61 S15-S13
      3 1506  793 (S06W34 L=238)   509    139        0 (1480/ 720-1524/ 854) -58.0 W31-W36 S10-S02
      4 1070  500 (S32W13 L=217)   611    263        1 ( 953/ 476-1198/ 553)   3.2 W04-W22 S34-S30
      5 1450  490 (S26W40 L=244)   403     61        0 (1419/ 468-1476/ 513) -21.8 W37-W42 S27-S24
  
Download Binary data for this image

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