logo kso logo uni graz

20170710 - Filament data for 10 UTC
Available data for 20170710: »05 UTC   »06 UTC   »07 UTC   »08 UTC   »09 UTC   »10 UTC   »11 UTC   »12 UTC   »13 UTC   »14 UTC   »15 UTC   »16 UTC   »17 UTC  
Click on image to open sensitive map!
 
  Color  xc   yc  (LatLon LCarr)  Area Length Branches (  x0/y0     x1/y1  )  Tilt Location
      1  190 1234 (N16E65 L= 65)   928    216        3 ( 145/1210- 240/1256)   8.7 E72-E59 N14-N17
      2  464 1222 (N16E38 L= 92)   253     92        0 ( 442/1181- 500/1251)  59.0 E39-E35 N13-N18
      3  988  772 (S12E03 L=127)   272     71        0 ( 958/ 739-1007/ 798)  71.6 E04-E01 S13-S10
      4  927  479 (S32E08 L=122)   272     51        0 ( 904/ 459- 954/ 507) -53.1 E09-E06 S33-S29
      5 1371  323 (S46W30 L=160)   533     93        1 (1325/ 299-1410/ 338) -12.5 W25-W34 S48-S44
      6  714  298 (S47E30 L=100)   498    107        0 ( 679/ 265- 771/ 331) -50.2 E32-E26 S50-S43
  
Download Binary data for this image

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