logo kso logo uni graz

20130630 - Filament data for 08 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  592 1383 (N23E32 L= 75)   694    227        0 ( 486/1363- 693/1409)  -3.4 E41-E24 N21-N24
      2  293 1227 (N11E54 L= 53)   411     58        0 ( 277/1197- 309/1269)  78.7 E55-E52 N09-N14
      3 1277  705 (S16W18 L=124)   228     83        1 (1257/ 663-1299/ 735)  68.2 W16-W18 S19-S14
      4  227  677 (S24E66 L= 41)   576     61        0 ( 213/ 653- 248/ 710) -76.0 E69-E62 S25-S21
      5  760  412 (S40E18 L= 88)   460     96        1 ( 741/ 366- 787/ 456) -74.1 E19-E16 S43-S35
  
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