logo kso logo uni graz

20130717 - Latest Filament data
Available data for 20130717: »05 UTC   »06 UTC   »07 UTC   »08 UTC   »09 UTC   »10 UTC   »11 UTC   »12 UTC   »13 UTC   »14 UTC  
Click on image to open sensitive map!
 
  Color  xc   yc  (LatLon LCarr)  Area Length Branches (  x0/y0     x1/y1  )  Tilt Location
      1 1857 1341 (N17W74 L=312)   907    111        0 (1814/1308-1904/1375) -20.6 W68-W85 N13-N19
      2  819  855 (S05E14 L=225)   397    145        2 ( 748/ 836- 870/ 881) -15.9 E17-E10 S06-S03
      3  332  593 (S21E57 L=182)  1734    203        5 ( 292/ 498- 383/ 678)  34.4 E70-E48 S28-S15
      4 1590  609 (S26W39 L=278)   356     45        1 (1572/ 582-1609/ 639)  76.0 W37-W40 S27-S23
      5  758  518 (S27E21 L=217)   384    139        0 ( 731/ 466- 816/ 558)  36.9 E24-E16 S30-S24
  
Download Binary data for this image

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