logo kso logo uni graz

20160925 - Filament data for 09 UTC
Available data for 20160925: »06 UTC   »07 UTC   »08 UTC   »09 UTC   »10 UTC   »11 UTC   »12 UTC   »13 UTC   »14 UTC   »15 UTC   »16 UTC  
Click on image to open sensitive map!
 
  Color  xc   yc  (LatLon LCarr)  Area Length Branches (  x0/y0     x1/y1  )  Tilt Location
      1 1397 1432 (N19W34 L=  5)   555    157        2 (1336/1396-1447/1489)   5.7 W29-W39 N17-N20
      2 1743 1404 (N06W59 L= 30)   564    172        0 (1698/1390-1794/1421) -15.3 W54-W65 N04-N07
      3 1923 1009 (S22W63 L= 34)   645    217        0 (1884/ 997-1958/1020) -15.3 W58-W69 S24-S20
      4  975  805 (S04E08 L=322)   224     45        0 ( 956/ 781- 996/ 835) -76.0 E09-E07 S05-S01
      5 1356  636 (S24W09 L=340)   534    172        1 (1306/ 585-1383/ 730)  45.0 W05-W12 S27-S19
      6 1081  379 (S33E16 L=314)   290     40        0 (1058/ 357-1105/ 396)  26.6 E17-E13 S34-S32
      7 1114  164 (S54E29 L=301)  2626    352        4 ( 991/ 104-1242/ 216)   1.8 E47-E15 S57-S51
  
Download Binary data for this image

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