logo kso logo uni graz

20210130 - Filament data for 08 UTC
Available data for 20210130: »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 1055 1822 (N49E13 L=241)   730     92        1 (1013/1792-1102/1853)   7.1 E16-E08 N46-N52
      2 1176 1661 (N37W01 L=255)   386     67        0 (1147/1631-1208/1693) -45.0 E01-W03 N35-N39
      3  574  430 (S50E31 L=223)   852    150        1 ( 550/ 360- 597/ 508)  52.4 E36-E26 S56-S43
      4 1260  342 (S45W34 L=287)   481     90        0 (1221/ 311-1296/ 380)  63.4 W31-W35 S47-S41
  
Download Binary data for this image

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