logo kso logo uni graz

20170904 - Filament data for 07 UTC
Available data for 20170904: »06 UTC   »07 UTC   »08 UTC   »09 UTC   »10 UTC   »11 UTC   »12 UTC   »13 UTC  
Click on image to open sensitive map!
 
  Color  xc   yc  (LatLon LCarr)  Area Length Branches (  x0/y0     x1/y1  )  Tilt Location
      1  349 1383 (N44E44 L= 67)   329     47        1 ( 334/1360- 363/1406)  45.0 E45-E41 N42-N45
      2  233 1177 (N32E54 L= 57)   625    122        1 ( 203/1144- 265/1206) -38.7 E57-E50 N29-N33
      3 1177 1112 (N09W11 L=122)   504    137        2 (1153/1044-1195/1174)  82.9 W08-W12 N04-N12
      4 1176  395 (S36E07 L=104)   296     63        2 (1140/ 373-1205/ 415) -36.9 E09-E05 S38-S33
  
Download Binary data for this image

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