logo kso logo uni graz

20160328 - Filament data for 10 UTC
Available data for 20160328: »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  995 1719 (N34E25 L=178)   403     70        2 ( 972/1690-1022/1745) -31.0 E27-E22 N32-N35
      2 1569 1147 (N16W28 L=231)   323     75        2 (1551/1096-1583/1200) -59.0 W26-W30 N13-N19
      3  639  779 (S31E17 L=186)   464    101        1 ( 604/ 747- 694/ 823) -18.4 E19-E12 S32-S28
      4 1141  763 (S18W14 L=217)  1145    304        2 (1012/ 745-1308/ 793)  29.4 W06-W23 S21-S11
      5  489  777 (S35E28 L=175)   225     48        0 ( 463/ 766- 522/ 790)  11.3 E30-E25 S35-S33
      6 1270  616 (S22W27 L=230)   349    130        0 (1227/ 561-1292/ 652) -38.7 W23-W29 S24-S19
      7  957  335 (S49W23 L=226)   488     89        1 ( 907/ 317- 994/ 359)  51.3 W19-W25 S51-S46
      8 1181  307 (S42W39 L=242)   293     35        1 (1154/ 292-1208/ 325)  71.6 W37-W40 S44-S40
  
Download Binary data for this image

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