logo kso logo uni graz

20130630 - Filament data for 07 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  579 1385 (N23E33 L= 75)   781    220        3 ( 475/1364- 683/1410)   0.0 E41-E24 N22-N24
      2  304 1248 (N13E54 L= 54)   605    160        0 ( 271/1198- 366/1298)  54.5 E56-E48 N09-N16
      3 1269  707 (S16W17 L=125)   250     72        2 (1253/ 667-1292/ 737)  90.0 W16-W18 S18-S14
      4  226  676 (S24E66 L= 42)   766     68        2 ( 212/ 641- 247/ 710)  45.0 E69-E62 S26-S21
      5  751  414 (S40E19 L= 88)   503     76        1 ( 732/ 372- 774/ 455) -80.5 E20-E17 S42-S36
  
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