logo kso logo uni graz

20210918 - Filament data for 08 UTC
Available data for 20210918: »08 UTC   »09 UTC   »10 UTC   »11 UTC   »12 UTC   »13 UTC   »14 UTC   »15 UTC   »16 UTC  
Click on image to open sensitive map!
 
  Color  xc   yc  (LatLon LCarr)  Area Length Branches (  x0/y0     x1/y1  )  Tilt Location
      1  591 1302 (N34E21 L= 61)   624    203        0 ( 507/1256- 692/1326) -29.7 E28-E14 N28-N36
      2  538  363 (S22E54 L= 28)   856    110        2 ( 517/ 311- 563/ 416)  30.3 E60-E48 S25-S18
      3 1132  365 (S36E13 L= 70)   342    151        0 (1066/ 345-1196/ 393) -18.4 E16-E07 S37-S33
      4  734  288 (S31E44 L= 38)   536    103        2 ( 706/ 239- 750/ 342)  38.7 E49-E39 S35-S27
      5  962  268 (S39E30 L= 53)   941    135        2 ( 909/ 215-1004/ 327)  31.6 E37-E24 S42-S34
  
Download Binary data for this image

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