en:praktikum:sternspektren

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
en:praktikum:sternspektren [2024/12/06 09:52] rhainichen:praktikum:sternspektren [2024/12/10 11:00] (current) rhainich
Line 35: Line 35:
  
 The following variables need to be set in the script: The following variables need to be set in the script:
-<code>+<code Python>
 ### ###
 #   Path to the directories with the images #   Path to the directories with the images
Line 65: Line 65:
 There are several tools for viewing 2D images in FITS format. //ds9// is easy to use and can be started from the terminal: There are several tools for viewing 2D images in FITS format. //ds9// is easy to use and can be started from the terminal:
  
-   ds9 filename.fit +  ds9 filename.fit 
  
 Tasks: Tasks:
Line 79: Line 79:
 === Parameter === === Parameter ===
 The corresponding script is called **2_findcaliblines.py**. In this file, using an editor of your choice (e.g. //Kate//), you only need to edit the line region where the calibration spectrum is to be found (''specRegionStart'' and ''specRegionEnd''; can be the same as the one you want to extract the star spectrum from) and a line region that is **outside the slits** (''bgRegionStart'', ''bgRegionEnd''): The corresponding script is called **2_findcaliblines.py**. In this file, using an editor of your choice (e.g. //Kate//), you only need to edit the line region where the calibration spectrum is to be found (''specRegionStart'' and ''specRegionEnd''; can be the same as the one you want to extract the star spectrum from) and a line region that is **outside the slits** (''bgRegionStart'', ''bgRegionEnd''):
-   + 
-  # name of the file with the wavelength calibration spectrum  +<code Python> 
-  calibFileName   = "calib_wave.FIT" +# region (rows on the image) containing the calibration spectrum 
-   +specRegionStart = 495 
-  # region (rows on the image) containing the calibration spectrum +specRegionEnd   = 600
-  specRegionStart = 495 +
-  specRegionEnd   = 600 +
-   +
-  # background region (rows on the image), which needs to be outside of the slits +
-  bgRegionStart   = 0 +
-  bgRegionEnd     = 200+
    
 +# background region (rows on the image), which needs to be outside of the slits
 +bgRegionStart   = 0
 +bgRegionEnd     = 200
 +</code>
 +
 The calibration is designed such that lines of mercury and argon are identified. The strongest lines that can be expected are marked in the following plot. The calibration is designed such that lines of mercury and argon are identified. The strongest lines that can be expected are marked in the following plot.
  
Line 170: Line 169:
 This associated script is named ''3_extractspectrum.py''. The script has a number of parameters, similar to the previous scripts, along with some additional parameters. The parameter section usually looks like this: This associated script is named ''3_extractspectrum.py''. The script has a number of parameters, similar to the previous scripts, along with some additional parameters. The parameter section usually looks like this:
  
-<code>+<code Python>
 #   Name of the object #   Name of the object
 object_name: str = "star" object_name: str = "star"
  • en/praktikum/sternspektren.1733478743.txt.gz
  • Last modified: 2024/12/06 09:52
  • by rhainich