logo kso logo uni graz

20150625 - Filament data for 09 UTC
Available data for 20150625: »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 1535 1548 (N40W38 L=295)   462     68        1 (1507/1521-1565/1581) -36.9 W35-W40 N37-N42
      2  741  927 (S06E17 L=240)  1095    295        1 ( 673/ 782- 775/1064) -66.4 E22-E14 S14-N02
      3 1388  669 (S18W26 L=284)   486     76        1 (1344/ 642-1427/ 698)  38.7 W23-W28 S19-S15
      4 1229  613 (S22W16 L=274)   561    154        1 (1150/ 591-1304/ 636)  -5.2 W10-W21 S23-S20
      5  283  562 (S34E58 L=200)   707    148        1 ( 251/ 549- 318/ 577)   0.0 E61-E53 S35-S32
  
Download Binary data for this image

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