ds9 での再現性の向上。。

ds9 ってのは、fits file を入力file としたイメージ作成?ソフト。

天文学系でよく使われるソフトなんです。ds9を立ち上げて、ほぼ GUI によって操作する。いわゆるマウスで操作が可能。

しかし、全く同じ状態に再現するのは大変。。なので、再現性が確保される方法について説明する。




command line から操作する際にオプションを指定し再現性を確保する。

Command Line Options の使い方の例

ds9 xi013_normal_filter.evt -view colorbar no -width 800 -height 1080 -invert -bin factor 4 -scale limits 0 50 -zoom to 2 -grid yes -grid load grid_fomat.grd -region load ronbun_use.reg

以下に各オプションの説明をする

  • view colorbar no      <<<<< カラーバーの未表示設定
  • width 800          <<<<< windouw の大きさ設定(横)
  • height 1080         <<<<< windouw の大きさ設定(縦)
  • invert           <<<<< カラー設定の白黒反転
  • bin factor 4        <<<<< bin の設定 これは bin 4 である
  • scale limits 0 50      <<<<< Scale Parameters の設定 これは low=0 high=50 である
  • zoom to 2          <<<<< Zoom の設定
  • grid yes          <<<<< grid を入れるか入れないかの設定(yes or no)
  • grid load grid_fomat.grd  <<<<< grid file の読み込み
  • region load ronbun_use.reg <<<<< reg file の読み込み

他にもオプション多数存在!!!

http://hea-www.harvard.edu/RD/ds9/ref/command.html

を参考に..