logo kso logo uni graz

20151208 - Filament data for 09 UTC
Available data for 20151208: »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  446 1433 (N33E35 L=190)   554     90        2 ( 406/1399- 487/1467)  26.6 E38-E31 N31-N35
      2 1184 1267 (N12W13 L=238)   232     61        0 (1154/1225-1214/1293) -53.1 W11-W14 N09-N13
      3  622 1248 (N19E22 L=203)   396    109        0 ( 593/1184- 665/1291)  39.8 E24-E18 N15-N20
      4  540  891 (S01E31 L=194)   242     86        0 ( 496/ 853- 570/ 915) -31.0 E34-E29 S03-N00
      5  287  709 (S09E56 L=169)  1330    352        7 ( 245/ 591- 329/ 827)  51.8 E65-E50 S15-S01
      6  467  561 (S20E45 L=180)   748    240        2 ( 421/ 492- 521/ 646)  31.6 E51-E38 S23-S15
  
Download Binary data for this image

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