<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://www.sternwarte.uni-erlangen.de/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Thalhammer</id>
	<title>Remeis-Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://www.sternwarte.uni-erlangen.de/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Thalhammer"/>
	<link rel="alternate" type="text/html" href="https://www.sternwarte.uni-erlangen.de/wiki/index.php/Special:Contributions/Thalhammer"/>
	<updated>2026-04-09T17:47:21Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.35.7</generator>
	<entry>
		<id>https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Integral&amp;diff=3815</id>
		<title>Integral</title>
		<link rel="alternate" type="text/html" href="https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Integral&amp;diff=3815"/>
		<updated>2025-07-30T13:33:44Z</updated>

		<summary type="html">&lt;p&gt;Thalhammer: /* Non-OSA INTEGRAL extraction */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
=== INTEGRAL Scripts ===&lt;br /&gt;
&lt;br /&gt;
The Remeis INTEGRAL scripts can be found under&lt;br /&gt;
&lt;br /&gt;
  /software/Science/satscripts/intscripts/&lt;br /&gt;
&lt;br /&gt;
on Remeis machines. If you have any questions on how to use them, read the following text and talk to Ingo or Philipp.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== General remarks on Integral data extraction at Remeis: ===&lt;br /&gt;
&lt;br /&gt;
Initially data is extracted in parallel on a ScWs basis and in a second step combined to the final products. This allows for the usage of [[Slurm|SLURM]] and leads to significantly faster extraction compared to a combined extraction on a single machine. The initial step is launch by the scripts master_sbs. The script can generate spectra and images for ISGRI and spectra for JEMX. No PICsIT, SPI or OMC analysis is run at Remeis. The resulting spectra are then combined using spe_pick while the ISGRI/IBIS images are merged using INT_mosa_ibis. As the spectral extraction requires a catalog containing the sources for which the spectral extraction should be run, it is advised to first generate images &amp;amp; a mosaic to determine, which sources are bright and detected in the field of view. &lt;br /&gt;
Generally it is a good idea, if you have not already to have a look at the OSA cookbook, e.g., to check how the paths in the data object locator (DOL) files is supposed to look like or how to prepare a suitable catalog for spectral extraction: https://www.isdc.unige.ch/integral/analysis&lt;br /&gt;
&lt;br /&gt;
Before any OSA analysis can be run the corresponding module has to be load with:&lt;br /&gt;
  ml integral-osa&lt;br /&gt;
&lt;br /&gt;
Before running any data extraction you need to set up a few soft links:&lt;br /&gt;
  ln -sf /home/X-ray/INTEGRAL/archive/aux&lt;br /&gt;
  ln -sf /home/X-ray/INTEGRAL/archive/ic&lt;br /&gt;
  ln -sf /home/X-ray/INTEGRAL/archive/idx&lt;br /&gt;
  ln -sf /home/X-ray/INTEGRAL/archive/scw&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Typical IBIS image/mosaic ===&lt;br /&gt;
; 1) Find ScWs that cover your source, e.g., pointing is &amp;lt; 10 degree away from source: &lt;br /&gt;
  objscw --scwlist &amp;quot;Cyg X-1&amp;quot; --maxdist=10 &amp;gt; scws_all.txt&lt;br /&gt;
If you want to use scws_all.txt as input for hte next step remove the header of this file, i.e, the first 6 lines. Importantly you will probalby want to select only a subset of the available observations and therefore perform some selection on the full list of science windows. As a simple example one might image to only use the latest 100 ScWs:&lt;br /&gt;
  tail -n 100 scws_all.txt &amp;gt; scws_cut.txt&lt;br /&gt;
; 2) Start the ScW based analysis:&lt;br /&gt;
  master_sbs  --job=IMA --scwlist=scws_all.txt --energies=&amp;quot;30,50,200&amp;quot; --verbose --clobber=yes  --path=$PWD &lt;br /&gt;
; 3) Generate the required input file for spe_pick&lt;br /&gt;
  txt2idx element=&amp;quot;scws_dols.txt&amp;quot; index=&amp;quot;cygx1&amp;quot;&lt;br /&gt;
; 4) Run INT_mosa_ibis to generate the a combine mosaic&lt;br /&gt;
  INT_mosa_ibis --obsgrp=$PWD --dol=scws_dols.txt --destin=$PWD/obs/mosa_cygx1&lt;br /&gt;
; 5) Check the images for artifacts and sort out affected ScWs through trial-and-error:&lt;br /&gt;
  ds9 isgri_mosa_ima.fits[2] -region found.reg -cmap b -scale sqrt -scale limits 0 60 -zoom 2&lt;br /&gt;
&lt;br /&gt;
The resulting image should look something like this: &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:mosa_cygx1.png|400px]]&lt;br /&gt;
&lt;br /&gt;
Details about the detected sources, such as there flux and detection significance can be found in the file isgri_mosa_res.fits.&lt;br /&gt;
&lt;br /&gt;
=== Typical IBIS spectral analysis ===&lt;br /&gt;
; 1) Again, find ScWs that cover your source and are of interest to you&lt;br /&gt;
; 2) Start the ScW based analysis:&lt;br /&gt;
  master_sbs  --job=SPE --scwlist=scws_cut.txt --source=&amp;quot;Cyg X-1&amp;quot;  --verbose --clobber=yes  --path=$PWD --catalog=specat.fits&lt;br /&gt;
; 3) Generate the required input file for spe_pick. Check that that all objects in the DOL file  exist.&lt;br /&gt;
  txt2idx element=&amp;quot;scws_dols.txt&amp;quot; index=&amp;quot;cygx1&amp;quot;&lt;br /&gt;
; 4) Run spe_pick to generate the final spectra&lt;br /&gt;
  spe_pick group=&amp;quot;cygx1.fits&amp;quot; source=&amp;quot;Cyg X-1&amp;quot; rootname=&amp;quot;cygX1_all&amp;quot; instrument=&amp;quot;ISGRI&amp;quot;&lt;br /&gt;
This will result in background subtracted spectra for the given source. Remember that the source name has exactly the naming in the INTEGRAL reference catalog. &lt;br /&gt;
&lt;br /&gt;
=== Typical IBIS light-curve generation ===&lt;br /&gt;
; 1) Quite similar to the spectral extraction. First find ScWs that cover your source, or reuse the previous ScW list: &lt;br /&gt;
; 2) Start the ScW based analysis, here for 100s time binning:&lt;br /&gt;
  master_sbs  --job=LC --scwlist=scws_cut.txt --source=&amp;quot;Cyg X-1&amp;quot;  --verbose --clobber=yes  --path=$PWD --catalog=specat.fits --energies=30,120 --deltat=100&lt;br /&gt;
This generates a separate light-curve for each ScW at, e.g., obs/250300170010/scw/250300170010.001/250300170010_Cyg_X-1_30-120.lc&lt;br /&gt;
; 3) These can then be merged together e.g. using fmerge or ISIS. &lt;br /&gt;
  ls obs/*/scw/*.001/*_Cyg_X-1_30-120.lc &amp;gt;&amp;gt; lcs.txt&lt;br /&gt;
  fmerge @lcs.txt Cyg_X1_ibis_lc.fits -&lt;br /&gt;
&lt;br /&gt;
=== Typical IBIS PIF light-curve generation ===&lt;br /&gt;
The above light-curves are only reliable down to a time-resolution of 1.0-0.1s. For higher timing resolution the deconvolution becomes unstable and one has to generate light-curves from the event-lists and pixel-illumination fraction (PIF). &lt;br /&gt;
&lt;br /&gt;
; 1) First event lists are generated with the respective Remeis Scripts:&lt;br /&gt;
  eventlist --path=$PWD --source=&amp;quot;Cyg X-1&amp;quot; --scw=$scw --catalog=$cat&lt;br /&gt;
This generates a event-list under &amp;quot;obs/266100220010/scw/266100220010.001/events.fits&amp;quot;. &lt;br /&gt;
For each source in the catalog and the FOV this file includes a column indicating whether a source is illuminated by the respective source.&lt;br /&gt;
; 2) Filter the eventfile e.g. with an ftools or an ISIS. &lt;br /&gt;
  fcopy &amp;quot;events.fits[2][PIF_1==1]&amp;quot; cyg_pif1.fits &lt;br /&gt;
; 3) Light-curves can then be generated e.g. with ISIS (lc_from_events)&lt;br /&gt;
  variable lc = lc_from_events(struct{time=evts.time[n], pi=evts.energy[n]};dt=dt,&lt;br /&gt;
  gti = fits_read_table(gtiname + &amp;quot;[14]&amp;quot;), minfracexp=.5);&lt;br /&gt;
&lt;br /&gt;
=== Typical JEMX spectral analysis ===&lt;br /&gt;
Until revolution 976 (Oct. 10,2010) only one JEM-X unit was operating at any give time. During that time one should therefore run the analysis for both detectors.&lt;br /&gt;
; 1) Find ScWs that cover your source. As JEMX has a smaller field of view, its max distance to the source should also be reduced to ~5 degree: &lt;br /&gt;
  objscw --scwlist &amp;quot;Cyg X-1&amp;quot; --maxdist=5 &amp;gt; scws_jmx.txt&lt;br /&gt;
And again, you will probably further select in which ScWs you are interested.&lt;br /&gt;
; 2) Generate a RMF with the required binning, e.g., 32 bins:&lt;br /&gt;
  j_rebin_rmf  binlist=STD_032&lt;br /&gt;
The RMF does not change between observations and might be reused as long as binning requirements do not change. &lt;br /&gt;
(Depending on your fitting software the resulting RMF might give you troubles and needs to be rewritten.)&lt;br /&gt;
; 3) Start the ScW based analysis with 32=2^5 logarithmic energy bins:&lt;br /&gt;
  master_sbs  --path=$PWD --scwlist=scws_jemx_cut.txt --job=SPE --source=&amp;quot;Cyg X-1&amp;quot; --jemx=1 --clobber=yes --catalog=catalog_jemx.fits --response=jemx_rebinned_rmf.fits --nChanBins=-5&lt;br /&gt;
; 4) Generate the required input file for spe_pick&lt;br /&gt;
  txt2idx element=&amp;quot;scws_jmx_dols.txt&amp;quot; index=&amp;quot;cygx1&amp;quot;&lt;br /&gt;
; 5) Run spe_pick to generate the final spectra. &lt;br /&gt;
  spe_pick group=cygx1.fits source=&amp;quot;Cyg X-1&amp;quot; rootname=&amp;quot;cygx1&amp;quot; instrument=&amp;quot;JMX1&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== JEMX images ===&lt;br /&gt;
To generate JEMX images there are no dedicated scripts at Remeis, and you have to fall back to the OSA scripts, e.g.:&lt;br /&gt;
  og_create idxSwg=scw.lst ogid=oph2 baseDir=&amp;quot;./&amp;quot; instrument=JMX1&lt;br /&gt;
  jemx_science_analysis startLevel=&amp;quot;IMA2&amp;quot; endLevel=&amp;quot;IMA2&amp;quot; jemxNum=1 COR_gainModel=2&lt;br /&gt;
&lt;br /&gt;
=== On catalogs ===&lt;br /&gt;
Adapted from the documentation: &lt;br /&gt;
While for generally image generation a user generated catalog is not required, if supplied, it needs to keeps the same format of the general reference catalog from which it was built, i.e. it has the extension of the type ”GNRL-REFR-CAT”. This is the correct extension to be used as input for the Imaging step. In Section 7.2 of the OSA manual, you are been shown how to build a catalog for the lightcurve (LCR) and spectral (SPE) step. In that case the catalog, you obtained, specat.fits, was of the type of ”ISGR-SRCLRES” which is the correct format for the LCR and SPE steps. The two formats cannot be switched, meaning that you cannot use a ”GNRL-REFR-CAT” type catalog for SPE and LCR or an ”ISGR-SRCL-RES” one for IMA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In practice one prepares the catalog used for spectral extraction from the results of the IMA step, taking only into account actually detected sources, e.g. by running the following on the results of INT_mosa_ibis:&lt;br /&gt;
 fcopy &amp;quot;isgri_srcl_res.fits[1][DETSIG&amp;gt;10]&amp;quot; specat.fits&lt;br /&gt;
&lt;br /&gt;
=== Time selection ===&lt;br /&gt;
&lt;br /&gt;
User generated GTI files can be used to perform time or phase resolved spectral analysis. This is done through the --gtiname &amp;amp; --gtiformat keywords. Consult the master_sbs help for more details. To generate GTI file it is recommended to make use of the OSA script gti_user, e.g., as follows:&lt;br /&gt;
&lt;br /&gt;
  gti_user tstart=8170.5 tstop=8171.8 unit=sec begin=0.0 end=50 step=150 repeat=653 gti=user_gti.fits clobber=yes&lt;br /&gt;
&lt;br /&gt;
Or for a to calculate a reverse bary-corrected GTI file. Not that this requires the coordinated and the DOL file of a ScW or Observation Group. &lt;br /&gt;
&lt;br /&gt;
  gti_user tstart=8393.16 unit=sec begin=0.0 end=50 step=25 repeat=600 gti=user_gti.fits clobber=yes bary=y group=og_ibis.fits+1&lt;br /&gt;
&lt;br /&gt;
Also note that the light-curves generated by  imalc_sbs through master_sbs are already barycenter corrected.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
More details can be found in the introduction to INTEGRAL analysis:&lt;br /&gt;
&lt;br /&gt;
https://www.isdc.unige.ch/integral/download/osa/doc/11.2/osa_um_intro.pdf&lt;br /&gt;
&lt;br /&gt;
=== Quick Look Analysis ===&lt;br /&gt;
&lt;br /&gt;
NRT data can also be analysed at Remeis with the usual scripts, require, however, an additional --nrt parameter in most scripts. &lt;br /&gt;
Also have a look at http://isdc.unige.ch/heavens/&lt;br /&gt;
&lt;br /&gt;
=== Documentation ===&lt;br /&gt;
&lt;br /&gt;
Useful to know:&lt;br /&gt;
http://www.isdc.unige.ch/integral/download/osa/doc/10.0/osa_um_ibis/node27.html&lt;br /&gt;
And for the cook-book and general documentation. Reading the IBIS Analysis User Manual is recommend: &lt;br /&gt;
https://www.isdc.unige.ch/integral/analysis&lt;br /&gt;
Each INTEGTAL script also has a help&lt;br /&gt;
  master_sbs --help&lt;br /&gt;
  cat $ISDC_ENV/help/ibis_science_analysis.txt&lt;br /&gt;
&lt;br /&gt;
=== Abbreviations ===&lt;br /&gt;
http://www.isdc.unige.ch/integral/support/glossary&lt;br /&gt;
&lt;br /&gt;
* '''DAL''' The Data Access Layer (DAL) is a software library used to manipulate (create, write, read and manage) scientific data. &lt;br /&gt;
* '''DOL''' The Data Object Location (DOL) specifies the location of a DAL object, both by the FITS file name and its extension. For instance, /isdc/dev/xxx.fits[2] is a DOL, while xxx.fits is simply the name of a FITS file. &lt;br /&gt;
&lt;br /&gt;
=== Known Issues ===&lt;br /&gt;
# In general: check first http://www.isdc.unige.ch/integral/support/faq for the error code you get&lt;br /&gt;
# The resulting spectra will not be strictly OGIP compliant, which e.g. ISIS might care about, but can be ignored.&lt;br /&gt;
&lt;br /&gt;
==== Errors mosaicing using custom DOLs ====&lt;br /&gt;
If you want to create a mosaic using DOL (Data Object Location) files, sometimes the building interrupts with errors like a Fortran Runtime error (http://www.isdc.unige.ch/integral/support/faq.cgi?SOFT-051) or errors like:&lt;br /&gt;
&lt;br /&gt;
  Using and copying first SCW &amp;gt;&amp;gt;/scratch1/beuchert/integral/scw_extr/obs/125400400010/scw/125400400010.001/swg_ibis.fits&lt;br /&gt;
  &amp;lt;&amp;lt;&lt;br /&gt;
  Log_0  :  100 elements opened.&lt;br /&gt;
  Log_0  :  100 elements attached.&lt;br /&gt;
  Error_1: Can not update the index.&lt;br /&gt;
&lt;br /&gt;
or&lt;br /&gt;
  Error_1: Can not close the element&lt;br /&gt;
or &lt;br /&gt;
  Error_2: DAL_READ_ERROR : error reading from FITS file&lt;br /&gt;
etc.&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
# Somehow corrupted scws? Collect sets of two scws and create Mosaics based on those. Like that it is easy to enclose corrupted scws.&lt;br /&gt;
# An error -2004 (DAL_FILE_NOT_ACCESSIBLE) often results because one of your groups is corrupted. Before restarting the analysis, make a ``dal_clean'', which should be able to do an automatic repair. If it does not work try a ``dal_verify'' to see what is corrupted. Or you can try to open your group (or child group) with fv and look for a file pointed by the group that does not exists. Most of the time removing the line with this wrong file in the group table is fixing your problem.&lt;br /&gt;
&lt;br /&gt;
The latter:&lt;br /&gt;
first create an observation group out of your dol-list of scws.&lt;br /&gt;
Creating observation groups is also the canonical way of extracting INTEGRAL/IBIS data.&lt;br /&gt;
Before doing that, the soft links as noted above have to be set in the directory.&lt;br /&gt;
Then:&lt;br /&gt;
  cd path/to/dir/with/softlinks/&lt;br /&gt;
  og_create idxSwg=dol.txt ogid=isgri_gc baseDir=&amp;quot;./&amp;quot; instrument=IBIS&lt;br /&gt;
  ls obs/isgri_gc/&lt;br /&gt;
Repair the observation group and included indices/links with &lt;br /&gt;
  dal_clean inDOL=&amp;quot;obs/isgri_gc/og_ibis.fits&amp;quot; chatty=&amp;quot;4&amp;quot; checkExt=&amp;quot;1&amp;quot;&lt;br /&gt;
Now INT_mosa_ibis should work again on the scws in dol.txt&lt;br /&gt;
&lt;br /&gt;
==== How to create mosaics (outdated) ====&lt;br /&gt;
&lt;br /&gt;
First make a list of scws you want to add to a mosaic, i.e., a &amp;quot;dol-file&amp;quot; dol.txt:&lt;br /&gt;
  /scratch1/beuchert/integral/scw_extr/obs/066200340010/scw/066200340010.001/swg_ibis.fits&lt;br /&gt;
  /scratch1/beuchert/integral/scw_extr/obs/066200350010/scw/066200350010.001/swg_ibis.fits&lt;br /&gt;
  /scratch1/beuchert/integral/scw_extr/obs/066200360010/scw/066200360010.001/swg_ibis.fits&lt;br /&gt;
Then prepare the directory where the mosaic shall be built in, i.e., set the env. variables to allow INT_mosa_ibis to find indices etc.:&lt;br /&gt;
  cd /some/path/&lt;br /&gt;
  ln -s /virgo/b/INTEGRAL/aux/&lt;br /&gt;
  ln -s /virgo/b/INTEGRAL/idx/&lt;br /&gt;
  ln -s /virgo/b/INTEGRAL/ic/&lt;br /&gt;
  ln -s /virgo/b/INTEGRAL/scw/&lt;br /&gt;
  ln -s /virgo/b/INTEGRAL/cat/&lt;br /&gt;
  mkdir /some/path/obs/&lt;br /&gt;
  &lt;br /&gt;
  INT_mosa_ibis --obsgrp=/path/to/all/extracted/scws/ --destin=/path/to/the/prepared/directory/obs/mosa_og/ --dol=&amp;quot;dol.txt&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== Non-OSA INTEGRAL extraction ===&lt;br /&gt;
&lt;br /&gt;
There are a few alternatives by now to using OSA+Remeis scripts:&lt;br /&gt;
* To run IBIS and JEMX analysis online there is MMODA at https://www.astro.unige.ch/mmoda/help/mmoda/integral-mission&lt;br /&gt;
* If you are interested in SPI data you can do this with the OSA installed here at Remeis, there are however much more reliable and stable pipelines available in form of either SPI-DAI or the SPI-pipeline at MPE organized by Thomas Siegert. &lt;br /&gt;
&lt;br /&gt;
[[Category:Data Extraction]]&lt;/div&gt;</summary>
		<author><name>Thalhammer</name></author>
	</entry>
	<entry>
		<id>https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Integral&amp;diff=3814</id>
		<title>Integral</title>
		<link rel="alternate" type="text/html" href="https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Integral&amp;diff=3814"/>
		<updated>2025-07-30T13:18:16Z</updated>

		<summary type="html">&lt;p&gt;Thalhammer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
=== INTEGRAL Scripts ===&lt;br /&gt;
&lt;br /&gt;
The Remeis INTEGRAL scripts can be found under&lt;br /&gt;
&lt;br /&gt;
  /software/Science/satscripts/intscripts/&lt;br /&gt;
&lt;br /&gt;
on Remeis machines. If you have any questions on how to use them, read the following text and talk to Ingo or Philipp.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== General remarks on Integral data extraction at Remeis: ===&lt;br /&gt;
&lt;br /&gt;
Initially data is extracted in parallel on a ScWs basis and in a second step combined to the final products. This allows for the usage of [[Slurm|SLURM]] and leads to significantly faster extraction compared to a combined extraction on a single machine. The initial step is launch by the scripts master_sbs. The script can generate spectra and images for ISGRI and spectra for JEMX. No PICsIT, SPI or OMC analysis is run at Remeis. The resulting spectra are then combined using spe_pick while the ISGRI/IBIS images are merged using INT_mosa_ibis. As the spectral extraction requires a catalog containing the sources for which the spectral extraction should be run, it is advised to first generate images &amp;amp; a mosaic to determine, which sources are bright and detected in the field of view. &lt;br /&gt;
Generally it is a good idea, if you have not already to have a look at the OSA cookbook, e.g., to check how the paths in the data object locator (DOL) files is supposed to look like or how to prepare a suitable catalog for spectral extraction: https://www.isdc.unige.ch/integral/analysis&lt;br /&gt;
&lt;br /&gt;
Before any OSA analysis can be run the corresponding module has to be load with:&lt;br /&gt;
  ml integral-osa&lt;br /&gt;
&lt;br /&gt;
Before running any data extraction you need to set up a few soft links:&lt;br /&gt;
  ln -sf /home/X-ray/INTEGRAL/archive/aux&lt;br /&gt;
  ln -sf /home/X-ray/INTEGRAL/archive/ic&lt;br /&gt;
  ln -sf /home/X-ray/INTEGRAL/archive/idx&lt;br /&gt;
  ln -sf /home/X-ray/INTEGRAL/archive/scw&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Typical IBIS image/mosaic ===&lt;br /&gt;
; 1) Find ScWs that cover your source, e.g., pointing is &amp;lt; 10 degree away from source: &lt;br /&gt;
  objscw --scwlist &amp;quot;Cyg X-1&amp;quot; --maxdist=10 &amp;gt; scws_all.txt&lt;br /&gt;
If you want to use scws_all.txt as input for hte next step remove the header of this file, i.e, the first 6 lines. Importantly you will probalby want to select only a subset of the available observations and therefore perform some selection on the full list of science windows. As a simple example one might image to only use the latest 100 ScWs:&lt;br /&gt;
  tail -n 100 scws_all.txt &amp;gt; scws_cut.txt&lt;br /&gt;
; 2) Start the ScW based analysis:&lt;br /&gt;
  master_sbs  --job=IMA --scwlist=scws_all.txt --energies=&amp;quot;30,50,200&amp;quot; --verbose --clobber=yes  --path=$PWD &lt;br /&gt;
; 3) Generate the required input file for spe_pick&lt;br /&gt;
  txt2idx element=&amp;quot;scws_dols.txt&amp;quot; index=&amp;quot;cygx1&amp;quot;&lt;br /&gt;
; 4) Run INT_mosa_ibis to generate the a combine mosaic&lt;br /&gt;
  INT_mosa_ibis --obsgrp=$PWD --dol=scws_dols.txt --destin=$PWD/obs/mosa_cygx1&lt;br /&gt;
; 5) Check the images for artifacts and sort out affected ScWs through trial-and-error:&lt;br /&gt;
  ds9 isgri_mosa_ima.fits[2] -region found.reg -cmap b -scale sqrt -scale limits 0 60 -zoom 2&lt;br /&gt;
&lt;br /&gt;
The resulting image should look something like this: &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:mosa_cygx1.png|400px]]&lt;br /&gt;
&lt;br /&gt;
Details about the detected sources, such as there flux and detection significance can be found in the file isgri_mosa_res.fits.&lt;br /&gt;
&lt;br /&gt;
=== Typical IBIS spectral analysis ===&lt;br /&gt;
; 1) Again, find ScWs that cover your source and are of interest to you&lt;br /&gt;
; 2) Start the ScW based analysis:&lt;br /&gt;
  master_sbs  --job=SPE --scwlist=scws_cut.txt --source=&amp;quot;Cyg X-1&amp;quot;  --verbose --clobber=yes  --path=$PWD --catalog=specat.fits&lt;br /&gt;
; 3) Generate the required input file for spe_pick. Check that that all objects in the DOL file  exist.&lt;br /&gt;
  txt2idx element=&amp;quot;scws_dols.txt&amp;quot; index=&amp;quot;cygx1&amp;quot;&lt;br /&gt;
; 4) Run spe_pick to generate the final spectra&lt;br /&gt;
  spe_pick group=&amp;quot;cygx1.fits&amp;quot; source=&amp;quot;Cyg X-1&amp;quot; rootname=&amp;quot;cygX1_all&amp;quot; instrument=&amp;quot;ISGRI&amp;quot;&lt;br /&gt;
This will result in background subtracted spectra for the given source. Remember that the source name has exactly the naming in the INTEGRAL reference catalog. &lt;br /&gt;
&lt;br /&gt;
=== Typical IBIS light-curve generation ===&lt;br /&gt;
; 1) Quite similar to the spectral extraction. First find ScWs that cover your source, or reuse the previous ScW list: &lt;br /&gt;
; 2) Start the ScW based analysis, here for 100s time binning:&lt;br /&gt;
  master_sbs  --job=LC --scwlist=scws_cut.txt --source=&amp;quot;Cyg X-1&amp;quot;  --verbose --clobber=yes  --path=$PWD --catalog=specat.fits --energies=30,120 --deltat=100&lt;br /&gt;
This generates a separate light-curve for each ScW at, e.g., obs/250300170010/scw/250300170010.001/250300170010_Cyg_X-1_30-120.lc&lt;br /&gt;
; 3) These can then be merged together e.g. using fmerge or ISIS. &lt;br /&gt;
  ls obs/*/scw/*.001/*_Cyg_X-1_30-120.lc &amp;gt;&amp;gt; lcs.txt&lt;br /&gt;
  fmerge @lcs.txt Cyg_X1_ibis_lc.fits -&lt;br /&gt;
&lt;br /&gt;
=== Typical IBIS PIF light-curve generation ===&lt;br /&gt;
The above light-curves are only reliable down to a time-resolution of 1.0-0.1s. For higher timing resolution the deconvolution becomes unstable and one has to generate light-curves from the event-lists and pixel-illumination fraction (PIF). &lt;br /&gt;
&lt;br /&gt;
; 1) First event lists are generated with the respective Remeis Scripts:&lt;br /&gt;
  eventlist --path=$PWD --source=&amp;quot;Cyg X-1&amp;quot; --scw=$scw --catalog=$cat&lt;br /&gt;
This generates a event-list under &amp;quot;obs/266100220010/scw/266100220010.001/events.fits&amp;quot;. &lt;br /&gt;
For each source in the catalog and the FOV this file includes a column indicating whether a source is illuminated by the respective source.&lt;br /&gt;
; 2) Filter the eventfile e.g. with an ftools or an ISIS. &lt;br /&gt;
  fcopy &amp;quot;events.fits[2][PIF_1==1]&amp;quot; cyg_pif1.fits &lt;br /&gt;
; 3) Light-curves can then be generated e.g. with ISIS (lc_from_events)&lt;br /&gt;
  variable lc = lc_from_events(struct{time=evts.time[n], pi=evts.energy[n]};dt=dt,&lt;br /&gt;
  gti = fits_read_table(gtiname + &amp;quot;[14]&amp;quot;), minfracexp=.5);&lt;br /&gt;
&lt;br /&gt;
=== Typical JEMX spectral analysis ===&lt;br /&gt;
Until revolution 976 (Oct. 10,2010) only one JEM-X unit was operating at any give time. During that time one should therefore run the analysis for both detectors.&lt;br /&gt;
; 1) Find ScWs that cover your source. As JEMX has a smaller field of view, its max distance to the source should also be reduced to ~5 degree: &lt;br /&gt;
  objscw --scwlist &amp;quot;Cyg X-1&amp;quot; --maxdist=5 &amp;gt; scws_jmx.txt&lt;br /&gt;
And again, you will probably further select in which ScWs you are interested.&lt;br /&gt;
; 2) Generate a RMF with the required binning, e.g., 32 bins:&lt;br /&gt;
  j_rebin_rmf  binlist=STD_032&lt;br /&gt;
The RMF does not change between observations and might be reused as long as binning requirements do not change. &lt;br /&gt;
(Depending on your fitting software the resulting RMF might give you troubles and needs to be rewritten.)&lt;br /&gt;
; 3) Start the ScW based analysis with 32=2^5 logarithmic energy bins:&lt;br /&gt;
  master_sbs  --path=$PWD --scwlist=scws_jemx_cut.txt --job=SPE --source=&amp;quot;Cyg X-1&amp;quot; --jemx=1 --clobber=yes --catalog=catalog_jemx.fits --response=jemx_rebinned_rmf.fits --nChanBins=-5&lt;br /&gt;
; 4) Generate the required input file for spe_pick&lt;br /&gt;
  txt2idx element=&amp;quot;scws_jmx_dols.txt&amp;quot; index=&amp;quot;cygx1&amp;quot;&lt;br /&gt;
; 5) Run spe_pick to generate the final spectra. &lt;br /&gt;
  spe_pick group=cygx1.fits source=&amp;quot;Cyg X-1&amp;quot; rootname=&amp;quot;cygx1&amp;quot; instrument=&amp;quot;JMX1&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== JEMX images ===&lt;br /&gt;
To generate JEMX images there are no dedicated scripts at Remeis, and you have to fall back to the OSA scripts, e.g.:&lt;br /&gt;
  og_create idxSwg=scw.lst ogid=oph2 baseDir=&amp;quot;./&amp;quot; instrument=JMX1&lt;br /&gt;
  jemx_science_analysis startLevel=&amp;quot;IMA2&amp;quot; endLevel=&amp;quot;IMA2&amp;quot; jemxNum=1 COR_gainModel=2&lt;br /&gt;
&lt;br /&gt;
=== On catalogs ===&lt;br /&gt;
Adapted from the documentation: &lt;br /&gt;
While for generally image generation a user generated catalog is not required, if supplied, it needs to keeps the same format of the general reference catalog from which it was built, i.e. it has the extension of the type ”GNRL-REFR-CAT”. This is the correct extension to be used as input for the Imaging step. In Section 7.2 of the OSA manual, you are been shown how to build a catalog for the lightcurve (LCR) and spectral (SPE) step. In that case the catalog, you obtained, specat.fits, was of the type of ”ISGR-SRCLRES” which is the correct format for the LCR and SPE steps. The two formats cannot be switched, meaning that you cannot use a ”GNRL-REFR-CAT” type catalog for SPE and LCR or an ”ISGR-SRCL-RES” one for IMA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In practice one prepares the catalog used for spectral extraction from the results of the IMA step, taking only into account actually detected sources, e.g. by running the following on the results of INT_mosa_ibis:&lt;br /&gt;
 fcopy &amp;quot;isgri_srcl_res.fits[1][DETSIG&amp;gt;10]&amp;quot; specat.fits&lt;br /&gt;
&lt;br /&gt;
=== Time selection ===&lt;br /&gt;
&lt;br /&gt;
User generated GTI files can be used to perform time or phase resolved spectral analysis. This is done through the --gtiname &amp;amp; --gtiformat keywords. Consult the master_sbs help for more details. To generate GTI file it is recommended to make use of the OSA script gti_user, e.g., as follows:&lt;br /&gt;
&lt;br /&gt;
  gti_user tstart=8170.5 tstop=8171.8 unit=sec begin=0.0 end=50 step=150 repeat=653 gti=user_gti.fits clobber=yes&lt;br /&gt;
&lt;br /&gt;
Or for a to calculate a reverse bary-corrected GTI file. Not that this requires the coordinated and the DOL file of a ScW or Observation Group. &lt;br /&gt;
&lt;br /&gt;
  gti_user tstart=8393.16 unit=sec begin=0.0 end=50 step=25 repeat=600 gti=user_gti.fits clobber=yes bary=y group=og_ibis.fits+1&lt;br /&gt;
&lt;br /&gt;
Also note that the light-curves generated by  imalc_sbs through master_sbs are already barycenter corrected.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
More details can be found in the introduction to INTEGRAL analysis:&lt;br /&gt;
&lt;br /&gt;
https://www.isdc.unige.ch/integral/download/osa/doc/11.2/osa_um_intro.pdf&lt;br /&gt;
&lt;br /&gt;
=== Quick Look Analysis ===&lt;br /&gt;
&lt;br /&gt;
NRT data can also be analysed at Remeis with the usual scripts, require, however, an additional --nrt parameter in most scripts. &lt;br /&gt;
Also have a look at http://isdc.unige.ch/heavens/&lt;br /&gt;
&lt;br /&gt;
=== Documentation ===&lt;br /&gt;
&lt;br /&gt;
Useful to know:&lt;br /&gt;
http://www.isdc.unige.ch/integral/download/osa/doc/10.0/osa_um_ibis/node27.html&lt;br /&gt;
And for the cook-book and general documentation. Reading the IBIS Analysis User Manual is recommend: &lt;br /&gt;
https://www.isdc.unige.ch/integral/analysis&lt;br /&gt;
Each INTEGTAL script also has a help&lt;br /&gt;
  master_sbs --help&lt;br /&gt;
  cat $ISDC_ENV/help/ibis_science_analysis.txt&lt;br /&gt;
&lt;br /&gt;
=== Abbreviations ===&lt;br /&gt;
http://www.isdc.unige.ch/integral/support/glossary&lt;br /&gt;
&lt;br /&gt;
* '''DAL''' The Data Access Layer (DAL) is a software library used to manipulate (create, write, read and manage) scientific data. &lt;br /&gt;
* '''DOL''' The Data Object Location (DOL) specifies the location of a DAL object, both by the FITS file name and its extension. For instance, /isdc/dev/xxx.fits[2] is a DOL, while xxx.fits is simply the name of a FITS file. &lt;br /&gt;
&lt;br /&gt;
=== Known Issues ===&lt;br /&gt;
# In general: check first http://www.isdc.unige.ch/integral/support/faq for the error code you get&lt;br /&gt;
# The resulting spectra will not be strictly OGIP compliant, which e.g. ISIS might care about, but can be ignored.&lt;br /&gt;
&lt;br /&gt;
==== Errors mosaicing using custom DOLs ====&lt;br /&gt;
If you want to create a mosaic using DOL (Data Object Location) files, sometimes the building interrupts with errors like a Fortran Runtime error (http://www.isdc.unige.ch/integral/support/faq.cgi?SOFT-051) or errors like:&lt;br /&gt;
&lt;br /&gt;
  Using and copying first SCW &amp;gt;&amp;gt;/scratch1/beuchert/integral/scw_extr/obs/125400400010/scw/125400400010.001/swg_ibis.fits&lt;br /&gt;
  &amp;lt;&amp;lt;&lt;br /&gt;
  Log_0  :  100 elements opened.&lt;br /&gt;
  Log_0  :  100 elements attached.&lt;br /&gt;
  Error_1: Can not update the index.&lt;br /&gt;
&lt;br /&gt;
or&lt;br /&gt;
  Error_1: Can not close the element&lt;br /&gt;
or &lt;br /&gt;
  Error_2: DAL_READ_ERROR : error reading from FITS file&lt;br /&gt;
etc.&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
# Somehow corrupted scws? Collect sets of two scws and create Mosaics based on those. Like that it is easy to enclose corrupted scws.&lt;br /&gt;
# An error -2004 (DAL_FILE_NOT_ACCESSIBLE) often results because one of your groups is corrupted. Before restarting the analysis, make a ``dal_clean'', which should be able to do an automatic repair. If it does not work try a ``dal_verify'' to see what is corrupted. Or you can try to open your group (or child group) with fv and look for a file pointed by the group that does not exists. Most of the time removing the line with this wrong file in the group table is fixing your problem.&lt;br /&gt;
&lt;br /&gt;
The latter:&lt;br /&gt;
first create an observation group out of your dol-list of scws.&lt;br /&gt;
Creating observation groups is also the canonical way of extracting INTEGRAL/IBIS data.&lt;br /&gt;
Before doing that, the soft links as noted above have to be set in the directory.&lt;br /&gt;
Then:&lt;br /&gt;
  cd path/to/dir/with/softlinks/&lt;br /&gt;
  og_create idxSwg=dol.txt ogid=isgri_gc baseDir=&amp;quot;./&amp;quot; instrument=IBIS&lt;br /&gt;
  ls obs/isgri_gc/&lt;br /&gt;
Repair the observation group and included indices/links with &lt;br /&gt;
  dal_clean inDOL=&amp;quot;obs/isgri_gc/og_ibis.fits&amp;quot; chatty=&amp;quot;4&amp;quot; checkExt=&amp;quot;1&amp;quot;&lt;br /&gt;
Now INT_mosa_ibis should work again on the scws in dol.txt&lt;br /&gt;
&lt;br /&gt;
==== How to create mosaics (outdated) ====&lt;br /&gt;
&lt;br /&gt;
First make a list of scws you want to add to a mosaic, i.e., a &amp;quot;dol-file&amp;quot; dol.txt:&lt;br /&gt;
  /scratch1/beuchert/integral/scw_extr/obs/066200340010/scw/066200340010.001/swg_ibis.fits&lt;br /&gt;
  /scratch1/beuchert/integral/scw_extr/obs/066200350010/scw/066200350010.001/swg_ibis.fits&lt;br /&gt;
  /scratch1/beuchert/integral/scw_extr/obs/066200360010/scw/066200360010.001/swg_ibis.fits&lt;br /&gt;
Then prepare the directory where the mosaic shall be built in, i.e., set the env. variables to allow INT_mosa_ibis to find indices etc.:&lt;br /&gt;
  cd /some/path/&lt;br /&gt;
  ln -s /virgo/b/INTEGRAL/aux/&lt;br /&gt;
  ln -s /virgo/b/INTEGRAL/idx/&lt;br /&gt;
  ln -s /virgo/b/INTEGRAL/ic/&lt;br /&gt;
  ln -s /virgo/b/INTEGRAL/scw/&lt;br /&gt;
  ln -s /virgo/b/INTEGRAL/cat/&lt;br /&gt;
  mkdir /some/path/obs/&lt;br /&gt;
  &lt;br /&gt;
  INT_mosa_ibis --obsgrp=/path/to/all/extracted/scws/ --destin=/path/to/the/prepared/directory/obs/mosa_og/ --dol=&amp;quot;dol.txt&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== Non-OSA INTEGRAL extraction ===&lt;br /&gt;
&lt;br /&gt;
There are a few alternatives by now to using OSA+Remeis scripts:&lt;br /&gt;
* To run IBIS and JEMX analysis online there is MMODA at https://www.astro.unige.ch/mmoda/help/mmoda/integral-mission&lt;br /&gt;
* If you are interested in SPI data you can do this with the OSA installed here at Remeis, there are however much more reliable and stable pipelines available in form of either SPI-DAI or the SPI-pipeline at MPE organized by Tomas Siegert. &lt;br /&gt;
&lt;br /&gt;
[[Category:Data Extraction]]&lt;/div&gt;</summary>
		<author><name>Thalhammer</name></author>
	</entry>
	<entry>
		<id>https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Remeis_English_Checklist&amp;diff=3736</id>
		<title>Remeis English Checklist</title>
		<link rel="alternate" type="text/html" href="https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Remeis_English_Checklist&amp;diff=3736"/>
		<updated>2025-05-15T15:42:20Z</updated>

		<summary type="html">&lt;p&gt;Thalhammer: /* Spelling and Word usage */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;====== The Remeis English Checklist ======&lt;br /&gt;
&lt;br /&gt;
(by J. Wilms and K. Pottschmidt)&lt;br /&gt;
&lt;br /&gt;
'''''First of all and most importantly:'''''&lt;br /&gt;
&lt;br /&gt;
* did you read the instructions to authors of the journal? If you are working on a thesis, did you read those of Astronomy and Astrophysics on [https://www.aanda.org/for-authors/language-editing/1-introduction language] and the TeX instructions in file aadoc.pdf, which is part of the Astronomy and Astrophysics package?&lt;br /&gt;
* did you read appendix A of the [https://journals.aps.org/files/rmpguide.pdf instructions to authors] of Rev Mod Phys?&lt;br /&gt;
&lt;br /&gt;
==== Punctuation ====&lt;br /&gt;
&lt;br /&gt;
* did you remove all commas before &amp;quot;that&amp;quot;?&lt;br /&gt;
* did you end your footnotes and captions with a full stop (&amp;quot;.&amp;quot;)?&lt;br /&gt;
* did you make sure that your use of &amp;quot;data&amp;quot; is correct and uses plural verbs?&lt;br /&gt;
* did you make sure that you do not have a &amp;quot;:&amp;quot; anywhere before an equation, but that your equations are seen as part of your sentences?&lt;br /&gt;
* did you make sure that you have commas surrounding &amp;quot;i.e.&amp;quot; and &amp;quot;e.g.&amp;quot;?&lt;br /&gt;
&lt;br /&gt;
==== Spelling and Word usage ====&lt;br /&gt;
&lt;br /&gt;
* do you consistently use either British or American spelling?&lt;br /&gt;
* did you run a spell checker over your manuscript? For TeX, use &amp;quot;ispell&amp;quot; or the built in spell checker in emacs.&lt;br /&gt;
* did you make sure not to use country prefixes in addresses in the author list?&lt;br /&gt;
* did you avoid passive voice as much as possible?&lt;br /&gt;
* did you make sure that you are //not// using &amp;quot;The found results are...&amp;quot; and similar German constructs in your text?&lt;br /&gt;
* did you make sure that everything in your text that is not your original result is accompanied by proper citations?&lt;br /&gt;
* did you make sure that you distinguish between &amp;quot;estimate&amp;quot; and &amp;quot;estimation&amp;quot; by replacing all &amp;quot;estimation&amp;quot; with &amp;quot;estimate&amp;quot;?&lt;br /&gt;
* did you replace all uses of &amp;quot;exemplary&amp;quot; by &amp;quot;example&amp;quot;?&lt;br /&gt;
* did you replace all uses of &amp;quot;dependency&amp;quot; by &amp;quot;dependence&amp;quot;?  &lt;br /&gt;
* did you use &amp;quot;short&amp;quot; for length intervals and &amp;quot;brief&amp;quot; for time intervals? (but note that &amp;quot;short of duration&amp;quot; is correct) &lt;br /&gt;
* did you replace all uses of &amp;quot;the actual value&amp;quot; by &amp;quot;the real value&amp;quot;? (if you are German, &amp;quot;actual&amp;quot; does not mean &amp;quot;aktuell&amp;quot;!)&lt;br /&gt;
* did you remove all uses of &amp;quot;hence&amp;quot; and &amp;quot;thereby&amp;quot;?&lt;br /&gt;
* did you make sure that you use &amp;quot;however&amp;quot; as sparingly as possible?&lt;br /&gt;
* did you make sure that you did not use &amp;quot;the equation reads..&amp;quot;, but rather used &amp;quot;the equation is...&amp;quot; or &amp;quot;the equation is given by...&amp;quot;?&lt;br /&gt;
* did you avoid split infinitives? (&amp;quot;to boldly go...&amp;quot; is wrong; yes, in many cases split infinitives are ok in current English, but they tend to be so often used wrongly by non-native speakers that it is best to avoid them)&lt;br /&gt;
* did you make sure that you distinguish properly between &amp;quot;this&amp;quot; and &amp;quot;these&amp;quot;?&lt;br /&gt;
* did you make use of the &amp;quot;Oxford comma&amp;quot;, i.e., do you have a comma before &amp;quot;and&amp;quot; in lists?&lt;br /&gt;
* did you use &amp;quot;i.e.&amp;quot; and &amp;quot;e.g.&amp;quot; correctly, i.e., using &amp;quot;i.e.&amp;quot; for a specific clarification or definition and &amp;quot;e.g.&amp;quot; where you would otherwise use &amp;quot;for example&amp;quot;?&lt;br /&gt;
* did you use the IAU recommended year - month - day sequences (2016 March 15)?&lt;br /&gt;
* did you make sure that you did not use contractions such as &amp;quot;didn't&amp;quot; or &amp;quot;you're&amp;quot;?&lt;br /&gt;
* did you replace &amp;quot;cf.&amp;quot; with &amp;quot;see&amp;quot; everywhere since you know that &amp;quot;cf.&amp;quot; means &amp;quot;compare&amp;quot;?&lt;br /&gt;
* did you ensure that you use &amp;quot;opportunity&amp;quot; where in German you would be using &amp;quot;Chance&amp;quot; or &amp;quot;Gelegenheit&amp;quot; (and did not use &amp;quot;chance&amp;quot;...)?&lt;br /&gt;
* did you make sure that the reader will understand what thing you refer to when using &amp;quot;it&amp;quot; rather than naming it? &lt;br /&gt;
* did you make sure that all uses of &amp;quot;this&amp;quot; are followed by the object you are referring to? &lt;br /&gt;
* did you use &amp;quot;led&amp;quot; rather than &amp;quot;lead&amp;quot; when using the past tense of the verb &amp;quot;to lead&amp;quot;?&lt;br /&gt;
* did you reread the manuscript for internal consistency after you added comments from your coauthors?&lt;br /&gt;
* did you make sure that your sentences are short (rule of thumb: if a sentence goes over more than three lines it is probably too long)?&lt;br /&gt;
* did you check that you did not combine two sentences that could be separate sentences with &amp;quot;and&amp;quot;?&lt;br /&gt;
* did you avoid abbreviations as much as possible and only used them when they are really, really common (HST, AGN, XMM,...)?&lt;br /&gt;
* did you check that you defined all abbreviations that you used at their first usage? (&amp;quot;...Active Galactic Nucleus (AGN)...&amp;quot; //not// &amp;quot;...AGN (Active Galactic Nucleus)...&amp;quot; )&lt;br /&gt;
&lt;br /&gt;
==== Citations ====&lt;br /&gt;
&lt;br /&gt;
* did you add the journal to all publications where you list the arXiv-reference and not just blindly copy the erroneous ADS bibtex entry?&lt;br /&gt;
* did you make sure that you distinguished between arXiv references where a paper is submitted and references where a paper is already accepted by checking the paper author's comment on the arXiv-page for that article?&lt;br /&gt;
* did you remove the page number for all ATEL-references downloaded from ADS and changed the journal name to &amp;quot;Astron. Tel.&amp;quot; or &amp;quot;ATEL&amp;quot;? (and similar for IAU telegrams)&lt;br /&gt;
* did you add editors and the title of the conference publication to all conference publications?&lt;br /&gt;
* did you add the publisher and place information (city only) to all books, conference publications, and other book-like publications that you are citing?&lt;br /&gt;
* did you check that your references are correct in that you are using ''\citet{biblabel}'' for references in the text and ''\citep{biblabel}'' for references in parentheses?&lt;br /&gt;
* did you make sure that none of your ''\citet{..}'' commands refer to more than one biblabel?&lt;br /&gt;
* [added by O. Koenig: did you make sure all SPIE references have an address? (you may want to follow this procedure: go to NASA ADS to get bibtex entry (&amp;lt;code&amp;gt;@inproceedings&amp;lt;/code&amp;gt;!), put the entry of &amp;quot;booktitle&amp;quot; into &amp;quot;series&amp;quot;, put &amp;lt;code&amp;gt;booktitle = procspie&amp;lt;/code&amp;gt; (there should be a &amp;lt;code&amp;gt;@STRING{procspie = &amp;quot;Proc. SPIE.&amp;quot;}&amp;lt;/code&amp;gt; in &amp;lt;code&amp;gt;mnemonic.bib&amp;lt;/code&amp;gt;, go to the SPIE webpage of the paper, get the address, and insert it by hand. A MWE could be &amp;lt;code&amp;gt;@INPROCEEDINGS{Doehring2015a, author = {{D{\&amp;quot;o}hring}, T. and {...}, title = &amp;quot;{The challenge of developing thin mirror shells for future x-ray telescopes}&amp;quot;, series = {Optical Systems Design 2015: Optical Fabrication, Testing, and Metrology V}, year = 2015, editor = {{Duparr}, A. and {Geyl}, R.}, booktitle = procspie, volume = {9628}, address = {Jena, Germany}, pages = {962809}}&amp;lt;/code&amp;gt;)]&lt;br /&gt;
&lt;br /&gt;
==== Typesetting (mainly in TeX) ====&lt;br /&gt;
&lt;br /&gt;
* did you check for missing spaces between values and units?&lt;br /&gt;
* did you make sure that all scientific units are typeset in &amp;lt;code&amp;gt;\mathrm&amp;lt;/code&amp;gt;?&lt;br /&gt;
* did you make sure not to use constructs such as &amp;lt;code&amp;gt;$\mathrm{m}/\mathrm{s}$&amp;lt;/code&amp;gt; by using &amp;lt;code&amp;gt;$\mathrm{m}\,\mathrm{s}^{-1}$&amp;lt;/code&amp;gt; instead?&lt;br /&gt;
* did you make sure that almost all of your error bars are rounded up to only one significant digit rather than following the DIN-norm (which is not applied in astronomical journals)?&lt;br /&gt;
* did you make sure that you are not using any positioning commands for the table or figure environment such as &amp;lt;code&amp;gt;\begin{table}[htpb]&amp;lt;/code&amp;gt;?&lt;br /&gt;
* did you make sure that your tables have captions above the table, and figures have captions below the figure or next to it (where allowed by the style)?&lt;br /&gt;
* did you make sure that you use empty lines to denote the start of a new paragraph rather than the ''\\''-command? (use &amp;lt;code&amp;gt;\parindent{0pt}&amp;lt;/code&amp;gt; if you do not want to indent paragraphs)&lt;br /&gt;
* did you make sure that there are no paragraph endings above or below &amp;lt;code&amp;gt;\begin{equation}...\end{equation}&amp;lt;/code&amp;gt; by ensuring that there is no empty line above or below the ''equation''-environment?&lt;br /&gt;
* did you make sure that you are not using &amp;lt;code&amp;gt;$\frac{a}{b}$&amp;lt;/code&amp;gt; in normal text, but use &amp;lt;code&amp;gt;$a/b$&amp;lt;/code&amp;gt; instead?&lt;br /&gt;
* did you make sure that you are not using the &amp;lt;code&amp;gt;displaymath&amp;lt;/code&amp;gt;-environment and that all equations are numbered?&lt;br /&gt;
* did you make sure that all of your sections, subsections, paragraphs and so on are numbered?&lt;br /&gt;
* did you avoid any and all uses of &amp;lt;code&amp;gt;\bf&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;\it&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;\sl&amp;lt;/code&amp;gt;, or &amp;lt;code&amp;gt;\em&amp;lt;/code&amp;gt; and use the proper commands &amp;lt;code&amp;gt;\textbf&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;\textit&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;\textsl&amp;lt;/code&amp;gt;, and &amp;lt;code&amp;gt;\emph&amp;lt;/code&amp;gt; instead?&lt;br /&gt;
* did you use the en-dash of TeX for ranges, even if they occur in math, by using &amp;lt;code&amp;gt;--&amp;lt;/code&amp;gt; in text mode rather than a minus sign? (that is, did you typeset a range in an equation as &amp;lt;code&amp;gt;$3x$--$5x$&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;$3x\mbox{--}5x$&amp;lt;/code&amp;gt; rather than, erroneously, &amp;lt;code&amp;gt;$3x-5x$&amp;lt;/code&amp;gt;?&lt;br /&gt;
* did you correctly use the minus-sign and dashes in astronomical source names, where the name contains coordinates and the &amp;lt;q&amp;gt;dash&amp;lt;/q&amp;gt; really is a southern declination or Galactic latitude, that is, did you typeset &amp;lt;code&amp;gt;Her X-1&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;LMC X-3&amp;lt;/code&amp;gt;, but &amp;lt;code&amp;gt;GX\,339$-$4&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;IGR J16318$-$4848&amp;lt;/code&amp;gt; (and as a really difficult one: &amp;lt;code&amp;gt;MCG$-$6-30-15&amp;lt;/code&amp;gt;)?&lt;br /&gt;
** as a side note: When the first part of the source name is a constellation name (e.g., Her X-1) it should be followed by a full space (&amp;lt;code&amp;gt;~&amp;lt;/code&amp;gt;), while if the first part of the source name is a catalog (GX, 4U, 2RXS), it should be followed by a half-space (&amp;lt;code&amp;gt;\,&amp;lt;/code&amp;gt;).&lt;br /&gt;
* did you make sure to typeset hydrogen equivalent columns as &amp;lt;code&amp;gt;$N_\mathrm{H}$&amp;lt;/code&amp;gt; rather than $n_H$ or $n_\mathrm{H}$? (note: in astronomy, $n$ denotes a particle density, so it has units of particles per cubic centimeter, while N is a column with units of particles per square centimeter; a certain analysis program uses nH for this parameter, but this does not mean that n should be used in papers).&lt;br /&gt;
&lt;br /&gt;
[[Category:Current Members]]&lt;/div&gt;</summary>
		<author><name>Thalhammer</name></author>
	</entry>
	<entry>
		<id>https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Guided_Tours_and_Public_Outreach&amp;diff=3729</id>
		<title>Guided Tours and Public Outreach</title>
		<link rel="alternate" type="text/html" href="https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Guided_Tours_and_Public_Outreach&amp;diff=3729"/>
		<updated>2025-05-12T14:23:21Z</updated>

		<summary type="html">&lt;p&gt;Thalhammer: /* Material and Presentations */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:internal]]&lt;br /&gt;
On this pages you can find all information needed to guide a tour through our observatory for public people.&lt;br /&gt;
&lt;br /&gt;
= General =&lt;br /&gt;
&lt;br /&gt;
Tours are officially '''organized''' by the [http://foerderverein-sternwarte-bamberg.de Foerderverein of the observatory], but '''operated''' by the observatory staff to be insured through the university!&lt;br /&gt;
&lt;br /&gt;
The main platform for the general public is&amp;lt;br&amp;gt;[http://foerderverein-sternwarte-bamberg.de/fuehrungen http://foerderverein-sternwarte-bamberg.de/fuehrungen].&lt;br /&gt;
&lt;br /&gt;
Here, tours can be ordered in two different ways:&lt;br /&gt;
* single persons and smaller groups can directly book public and regular guided tours via our webform at&amp;lt;br&amp;gt;https://www.sternwarte.uni-erlangen.de/guided-tours/&lt;br /&gt;
* larger groups may directly ask for a tour at a separate date either by email to&amp;lt;br&amp;gt;[mailto:fuehrungen@foerderverein-sternwarte-bamberg.de fuehrungen@foerderverein-sternwarte-bamberg.de]&amp;lt;br&amp;gt;or by phone. All guided tour administrators have access to that email inbox.&lt;br /&gt;
&lt;br /&gt;
The source code of the webform for booking a public tour can be found in the GIT repository at&amp;lt;br&amp;gt;&lt;br /&gt;
[https://www.sternwarte.uni-erlangen.de/gitlab/webmaster/guided-tours https://www.sternwarte.uni-erlangen.de/gitlab/webmaster/guided-tours].&amp;lt;br&amp;gt;&lt;br /&gt;
All pushes to the master branch are automatically deployed at the official URL above!&lt;br /&gt;
&lt;br /&gt;
== Mailing List / Current &amp;quot;staff&amp;quot; ==&lt;br /&gt;
&lt;br /&gt;
All people interested in giving guided tours are member of the '''internal''' mailing list &lt;br /&gt;
[mailto:astro-fuehrungen@lists.fau.de astro-fuehrungen@lists.fau.de], '''please do not share this address with externals.&lt;br /&gt;
If you're not on the list but interested in giving tours, just ask Max to add you :-)&lt;br /&gt;
&lt;br /&gt;
New tours are announced via this list. See [[Mailing lists]] for the list administrator.&lt;br /&gt;
&lt;br /&gt;
In charge of organization:&lt;br /&gt;
* Nico&lt;br /&gt;
* Katrin (Backup and mentor :-)&lt;br /&gt;
* Lea (Backup)&lt;br /&gt;
&lt;br /&gt;
Currently, the following people give tours on a regular basis:&lt;br /&gt;
* Steven&lt;br /&gt;
* Christian&lt;br /&gt;
* Aafia&lt;br /&gt;
* Amy&lt;br /&gt;
* Philipp T.&lt;br /&gt;
* Alexey&lt;br /&gt;
* Katharina&lt;br /&gt;
* Martin&lt;br /&gt;
* Nico&lt;br /&gt;
&lt;br /&gt;
= Tip policy =&lt;br /&gt;
&lt;br /&gt;
Starting in 2025, there are fixed &amp;quot;prices&amp;quot; for guided tours called &amp;quot;Unkostenbeitrag&amp;quot; (expense contribution). As a guide you get at least 35 euros and in case of tours on weekends or with observing even more. &lt;br /&gt;
The group is informed beforehand their expected expense contribution and asked to transfer the money to the Foerderverein. After the tour, you will get reimbursed by Ingo via bank transfer.&lt;br /&gt;
&lt;br /&gt;
For public tours please collect donations at the beginning of the tour. Participants are notified via email of an expected donation of 5 euros.&lt;br /&gt;
After giving a public tour please execute the file &amp;lt;code&amp;gt;/home/zalot/publictip.py&amp;lt;/code&amp;gt; and follow the instructions :-)&lt;br /&gt;
&lt;br /&gt;
= Offering Tours =&lt;br /&gt;
&lt;br /&gt;
At some point you're perhaps asked to give a tour or if it is possible to have one on a specific date. The latter might occur if Edith is out of her office and her telephone is redirected. In those cases you should know ''and'' check following things:&lt;br /&gt;
* '''Who is asking''' for a tour? &amp;lt;br&amp;gt; If you're on the phone ask for a name and write down the phone number where the person can be called!&lt;br /&gt;
* The '''number of people should be between 15 and 25'''. &amp;lt;br&amp;gt; Of course, the boundary conditions depend on the person guiding the tour. In a case of doubt, ask the guide or, if none is found yet, you simply can't promise that there will be a tour! In that case you may offer to look for a guide giving the tour anyway (and call the person back), but again don't make any promises! A list of people offering tours can be found below.&lt;br /&gt;
* What is the '''average age of the persons attending''' the tour? &amp;lt;br&amp;gt; That's an important point since the content of a tour differs between children and adults, of course. Furthermore some guides have favorite age groups!&lt;br /&gt;
* Carefully check the '''date and time of the tour'''!&lt;br /&gt;
** It's most likely to find a guide if the weekday of a tour is '''between Monday and Thursday'''. Friday might work if it is before noon, otherwise people might be on the way into the weekend. In all other cases you may offer to look for a guide giving the tour anyway (see the point about the group size above).&lt;br /&gt;
** Make sure that there is '''no tour scheduled already'''! For that look into our online calendar (the link can be found below) and on the whiteboard in the copying machine office.&lt;br /&gt;
** Related to the last point ensure that there is '''no lab course''' running at the date! The lab course is also marked in our online calendar.&lt;br /&gt;
** Usually, a tour will take '''about 1.5 to 2 hours'''.&lt;br /&gt;
* See [[Guided Tours and Public Outreach#Tip policy]] for information on the &amp;quot;price&amp;quot; of guided tours.&lt;br /&gt;
* '''Observing with our telescopes''' is possible, of course, but only in case of '''night and cloudless weather'''! No kidding, some people are not aware of these facts... &amp;lt;br&amp;gt; (&amp;quot;The day is too bright to see stars.&amp;quot;, &amp;quot;I'm sorry, we can't look trough the clouds.&amp;quot;, &amp;quot;The weather forecast is too uncertain, we can't promise.&amp;quot;) Please check if someone else has already signed in for one of the telescopes on the day/night of the guided tour!  '''IMPORTANT:'''  Be aware that you are not allowed to operate the telescopes on you own, there ALWAYS has to be at least a second person around. To assure that, you either have to have a second person from the observatory present (at least in the main building) or you have to set up AND disassemble everything while the people from the tour are there. Otherwise no observations are allowed to take place!&lt;br /&gt;
* If all the above points are clarified '''mark the tour''' &amp;lt;br&amp;gt; in our [https://www.sternwarte.uni-erlangen.de/calendar/ online calendar] and the whiteboard in the copying machine office. You have to be at a machine at the observatory to have access to the online calendar (to be more precisely: you're machine has to have an internal IP-address). &amp;lt;br&amp;gt; The entry into the online calendar, besides the date and time, should include &amp;quot;for whom is the tour and the group size, contact person and phone number, name of the guide giving the tour&amp;quot;. &amp;lt;br&amp;gt; The whiteboard template is as follows: &amp;quot;date, for whom is the tour, time, guide&amp;quot;&lt;br /&gt;
&lt;br /&gt;
= Giving a tour =&lt;br /&gt;
&lt;br /&gt;
Each tour has several stations, where you can show things or talk to the people. Useful information and experiences about that is listed below. It might be helpful as well to read the article about [[intern:Popular_science:start|popular science]] in case you want or have to (if somebody asks) explain scientific aspects.&lt;br /&gt;
&lt;br /&gt;
Note that there is also a separate page about guided tour stations: https://www.sternwarte.uni-erlangen.de/wiki/index.php/Guided_tour_stations&lt;br /&gt;
&lt;br /&gt;
== Preparation ==&lt;br /&gt;
&lt;br /&gt;
'''Before the tour'''&lt;br /&gt;
* Shut the doors of all offices in the main building (at least on the ground level) for several reasons: people are not allowed to walk in there and some of us are still working there during tours!&lt;br /&gt;
* Remove the northern hemisphere from the model of the inner solar system located in the entrance hall (you may put it into the Knigge room)&lt;br /&gt;
* Switch the lights on you need:&lt;br /&gt;
** entrance hall&lt;br /&gt;
** meteorite showcase (switch is on the right next to it)&lt;br /&gt;
** hallway to the meridian building; here are multiple switches&lt;br /&gt;
*** main light: right next to the door of the hallway or the backdoor of the main building (labeled &amp;quot;Meridian&amp;quot;)&lt;br /&gt;
*** info panels: on the opposite wall to the door next to the blue cupboard&lt;br /&gt;
*** showcases and Blinkkomparator: in the cutout box up the few stairs on the right wall close to the library, labeled &amp;quot;Linke Steckdosen&amp;quot;&lt;br /&gt;
* In case of observations&lt;br /&gt;
** make sure that you are '''never''' alone in the domes! There always have to be at least two people present.&lt;br /&gt;
** carry the needed oculars into the domes (for observations with the naked eye, the 40cm telescope is strongly recommended)&lt;br /&gt;
** do __not__ open the domes (first, it might start raining while nobody is there, and it's more fun for you to let the people do it)&lt;br /&gt;
** do __not__ remove the dust covers of the telescopes (wait until the dome has been opened)&lt;br /&gt;
** read the [[remeis:start|guide how to operate the telescopes and mountings]]&lt;br /&gt;
** after observing: shut down the telescope mounting, put the dust covers back on and close the domes&lt;br /&gt;
* In case of showing nice pictures&lt;br /&gt;
** make sure enough chairs are available&lt;br /&gt;
** switch on the beamer in the library, log into the machine and start your presentation, picture-viewer, ...&lt;br /&gt;
 &lt;br /&gt;
'''After the tour'''&lt;br /&gt;
* Switch the lights off&lt;br /&gt;
* Logout of the used machines and switch the beamer off&lt;br /&gt;
* Put on the dust covers of the telescopes in the hallway&lt;br /&gt;
* Protect the photo plates on the Blinkkomparator from getting dusty&lt;br /&gt;
* '''Move the entry from the whiteboard''' in the copying machine office '''to the list attached to the pin-board''' next to it&lt;br /&gt;
&lt;br /&gt;
== Material and Presentations ==&lt;br /&gt;
*Collected information valuable for guided tours: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours'' and ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/guidedtour.pdf''&lt;br /&gt;
&lt;br /&gt;
*A merger of (picture/video) presentations given at guided tours: &amp;lt;br&amp;gt; ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/guidedtour.odp'' &lt;br /&gt;
 &lt;br /&gt;
* Presentations &amp;amp; notes on using the CHT during tours:  &amp;lt;br&amp;gt; ''/home/thalhammer/userdata/guided_tours/''&lt;br /&gt;
&lt;br /&gt;
*and according videos in  &amp;lt;br&amp;gt; ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/videos/''&lt;br /&gt;
&lt;br /&gt;
*Research and activities at Remeis from the radio to the gamma-rays (Tobi Beuchert): &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Andrea_tour_material/observations_allwavelength_remeisresearch_beuchert.pdf''&lt;br /&gt;
&lt;br /&gt;
*A presentation showing the astrophotography done at the observatory: &amp;lt;br&amp;gt; ''/data/media/slideshow_astrophotographie/optische_Quellen.pdf''&lt;br /&gt;
&lt;br /&gt;
*A video tour with Joern: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Joerns_example_tour''&lt;br /&gt;
&lt;br /&gt;
*A video tour with Uli (only hallway): &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Ulis_example_tour_hall_2019''&lt;br /&gt;
&lt;br /&gt;
*A complete tour by Sebastian Müller: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Sebastians_example_tour''&lt;br /&gt;
&lt;br /&gt;
*Presentations for tours by Andrea Gokus: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Andrea_tour_material'' &amp;lt;br&amp;gt; Contains presentations about the solar system (solar_system.pdf), neutrinos (neutrino_talk.pdf), overview of different objet types (impressions_universe.pdf)&lt;br /&gt;
&lt;br /&gt;
*Andreas tour notes: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Andrea_tour_material/Sternwarten_Fuehrungsnotizen.pdf''&lt;br /&gt;
&lt;br /&gt;
*Amys tour notes: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Guided_Tour_Information_Amy.pdf''&lt;br /&gt;
&lt;br /&gt;
*Tobis tour notes: &amp;lt;br&amp;gt; ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/guidedtour.pdf''&lt;br /&gt;
&lt;br /&gt;
*Information on clocks: &amp;lt;br&amp;gt; ''/data/media/history/2009-01_KlassikUhren_Poehlmann_Max_Ort.pdf''&lt;br /&gt;
&lt;br /&gt;
*Information on history of the observatory and the collection: &amp;lt;br&amp;gt; ''/data/media/history/AstronomischeSammlung.pdf''&lt;br /&gt;
&lt;br /&gt;
*History of the observatory (Litten): &amp;lt;br&amp;gt; ''/data/media/history/Litten-1.pdf'' &amp;lt;br&amp;gt; ''/data/media/history/Litten-2.pdf''&lt;br /&gt;
&lt;br /&gt;
*Last will of Dr. Karl Remeis: &amp;lt;br&amp;gt; ''/data/media/history/Testament_Karl_Remeis.pdf''&lt;br /&gt;
&lt;br /&gt;
*Die Remeis-Sternwarte zu Bamberg 1889-1939, E. Zinner: &amp;lt;br&amp;gt; [https://articles.adsabs.harvard.edu/cgi-bin/nph-iarticle_query?1939VeBam...4....1Z&amp;amp;amp;data_type=PDF_HIGH&amp;amp;amp;whole_paper=YES&amp;amp;amp;type=PRINTER&amp;amp;amp;filetype=.pdf ADS]&lt;br /&gt;
&lt;br /&gt;
== Picture presentation ==&lt;br /&gt;
&lt;br /&gt;
There are different modes for the beamer (e.g. presentation, videos, graphics etc.) which result in a different appearance of the images. Make sure to select a presentation mode in which the pictures appear in an appropriate brightness on the screen. (I think &amp;quot;graphics&amp;quot; was a good one).&lt;br /&gt;
&lt;br /&gt;
== Telescopes in the domes ==&lt;br /&gt;
It's nice to show the main mirror to the people so that they can see themselves. To do so, just turn down the telescope in declination. This is only possible for the 40cm as the 50cm-Mount has a mechanical stop.&lt;br /&gt;
&lt;br /&gt;
Sometimes people want to know what we do with the tiny, little telescopes attached on the side of the big ones. Those are guiding-scopes. You can attach a camera to them and let it take pictures of one star. If the star moves (what it shouldn't do) a correction signal is sent to the mount to compensate the movement of the star. Stars can &amp;quot;move&amp;quot; in an image for example due to impreciseness of the mount. &lt;br /&gt;
&lt;br /&gt;
The (dusty) plate in front of the 40cm mirror is called &amp;quot;Schmid-Platte&amp;quot;. It is used to improve the imaging of the telescope and to correct several errors of the mirrors like coma and field-curvature. As it is very sensitive to scratching, it won't be cleaned and left dusty. But the dust has hardly any effect on the images as it lays far outside of the focusplane. The optical design is similar to a Ritchey-Chrétien type regarding the capability, but has a spherical main mirror, an aspherical secondary mirror and a lens-corrector (=Schmidt-plate). The price of the telescope and the mount is roughly about 25.000€ altogether.&lt;br /&gt;
&lt;br /&gt;
The 50cm doesn't have a Schmid-Platte but a corrector (lenses) placed in the OAZ. It has an elliptical main mirror and a spherical secondary mirror (Corrected Dall Kirkham). The price of the telescope and the mount is roughly about 65.000€. The secondary mirror is, compared to the size of the main mirror, significantly larger than the 40cm-sec. mirror. This results in a better luminosity an a larger, flat-field which is important for taking images. We can achieve tracking accuracies of about 10min without guiding.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Tours looking for a guide ==&lt;br /&gt;
ATTENTION: tours are not sorted by the date of the tour, but by their request date!&amp;lt;br&amp;gt;&lt;br /&gt;
If you want to give a tour, just email the [mailto:fuehrungen@foerderverein-sternwarte-bamberg.de guide organizers].&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align: center;&lt;br /&gt;
! Date &amp;amp; Time&lt;br /&gt;
! Language&lt;br /&gt;
! Organizer &lt;br /&gt;
! Additional information &lt;br /&gt;
! Group&lt;br /&gt;
! Observing&lt;br /&gt;
! Deadline for guides&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Monday, 30.06.2025 at 21:00&lt;br /&gt;
| German or English&lt;br /&gt;
| Uni Bamberg (AG Theo)&lt;br /&gt;
| Tour also possible on July 7&lt;br /&gt;
| 25 adults&lt;br /&gt;
| Yes&lt;br /&gt;
| 09.06.2025&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Thursday, 27.11.2025 at 19:00&lt;br /&gt;
| German&lt;br /&gt;
| Rotary Club Bamberg (Grupp)&lt;br /&gt;
| 2 guides required! Tour also possible on 29.01.2026 or 26.02.2026.&lt;br /&gt;
| 30 adults&lt;br /&gt;
| Yes&lt;br /&gt;
| 30.05.2025&lt;br /&gt;
&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Thalhammer</name></author>
	</entry>
	<entry>
		<id>https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Guided_Tours_and_Public_Outreach&amp;diff=3724</id>
		<title>Guided Tours and Public Outreach</title>
		<link rel="alternate" type="text/html" href="https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Guided_Tours_and_Public_Outreach&amp;diff=3724"/>
		<updated>2025-05-07T13:03:21Z</updated>

		<summary type="html">&lt;p&gt;Thalhammer: /* Material and Presentations */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:internal]]&lt;br /&gt;
On this pages you can find all information needed to guide a tour through our observatory for public people.&lt;br /&gt;
&lt;br /&gt;
= General =&lt;br /&gt;
&lt;br /&gt;
Tours are officially '''organized''' by the [http://foerderverein-sternwarte-bamberg.de Foerderverein of the observatory], but '''operated''' by the observatory staff to be insured through the university!&lt;br /&gt;
&lt;br /&gt;
The main platform for the general public is&amp;lt;br&amp;gt;[http://foerderverein-sternwarte-bamberg.de/fuehrungen http://foerderverein-sternwarte-bamberg.de/fuehrungen].&lt;br /&gt;
&lt;br /&gt;
Here, tours can be ordered in two different ways:&lt;br /&gt;
* single persons and smaller groups can directly book public and regular guided tours via our webform at&amp;lt;br&amp;gt;https://www.sternwarte.uni-erlangen.de/guided-tours/&lt;br /&gt;
* larger groups may directly ask for a tour at a separate date either by email to&amp;lt;br&amp;gt;[mailto:fuehrungen@foerderverein-sternwarte-bamberg.de fuehrungen@foerderverein-sternwarte-bamberg.de]&amp;lt;br&amp;gt;or by phone. All guided tour administrators have access to that email inbox.&lt;br /&gt;
&lt;br /&gt;
The source code of the webform for booking a public tour can be found in the GIT repository at&amp;lt;br&amp;gt;&lt;br /&gt;
[https://www.sternwarte.uni-erlangen.de/gitlab/webmaster/guided-tours https://www.sternwarte.uni-erlangen.de/gitlab/webmaster/guided-tours].&amp;lt;br&amp;gt;&lt;br /&gt;
All pushes to the master branch are automatically deployed at the official URL above!&lt;br /&gt;
&lt;br /&gt;
== Mailing List / Current &amp;quot;staff&amp;quot; ==&lt;br /&gt;
&lt;br /&gt;
All people interested in giving guided tours are member of the '''internal''' mailing list &lt;br /&gt;
[mailto:astro-fuehrungen@lists.fau.de astro-fuehrungen@lists.fau.de], '''please do not share this address with externals.&lt;br /&gt;
If you're not on the list but interested in giving tours, just ask Max to add you :-)&lt;br /&gt;
&lt;br /&gt;
New tours are announced via this list. See [[Mailing lists]] for the list administrator.&lt;br /&gt;
&lt;br /&gt;
In charge of organization:&lt;br /&gt;
* Nico&lt;br /&gt;
* Katrin (Backup and mentor :-)&lt;br /&gt;
* Lea (Backup)&lt;br /&gt;
&lt;br /&gt;
Currently, the following people give tours on a regular basis:&lt;br /&gt;
* Steven&lt;br /&gt;
* Christian&lt;br /&gt;
* Aafia&lt;br /&gt;
* Amy&lt;br /&gt;
* Philipp T.&lt;br /&gt;
* Alexey&lt;br /&gt;
* Katharina&lt;br /&gt;
* Martin&lt;br /&gt;
* Nico&lt;br /&gt;
&lt;br /&gt;
= Tip policy =&lt;br /&gt;
&lt;br /&gt;
Starting in 2025, there are fixed &amp;quot;prices&amp;quot; for guided tours called &amp;quot;Unkostenbeitrag&amp;quot; (expense contribution). As a guide you get at least 35 euros and in case of tours on weekends or with observing even more. &lt;br /&gt;
The group is informed beforehand their expected expense contribution and asked to transfer the money to the Foerderverein. After the tour, you will get reimbursed by Ingo via bank transfer.&lt;br /&gt;
&lt;br /&gt;
For public tours please collect donations at the beginning of the tour. Participants are notified via email of an expected donation of 5 euros.&lt;br /&gt;
After giving a public tour please execute the file &amp;lt;code&amp;gt;/home/zalot/publictip.py&amp;lt;/code&amp;gt; and follow the instructions :-)&lt;br /&gt;
&lt;br /&gt;
= Offering Tours =&lt;br /&gt;
&lt;br /&gt;
At some point you're perhaps asked to give a tour or if it is possible to have one on a specific date. The latter might occur if Edith is out of her office and her telephone is redirected. In those cases you should know ''and'' check following things:&lt;br /&gt;
* '''Who is asking''' for a tour? &amp;lt;br&amp;gt; If you're on the phone ask for a name and write down the phone number where the person can be called!&lt;br /&gt;
* The '''number of people should be between 15 and 25'''. &amp;lt;br&amp;gt; Of course, the boundary conditions depend on the person guiding the tour. In a case of doubt, ask the guide or, if none is found yet, you simply can't promise that there will be a tour! In that case you may offer to look for a guide giving the tour anyway (and call the person back), but again don't make any promises! A list of people offering tours can be found below.&lt;br /&gt;
* What is the '''average age of the persons attending''' the tour? &amp;lt;br&amp;gt; That's an important point since the content of a tour differs between children and adults, of course. Furthermore some guides have favorite age groups!&lt;br /&gt;
* Carefully check the '''date and time of the tour'''!&lt;br /&gt;
** It's most likely to find a guide if the weekday of a tour is '''between Monday and Thursday'''. Friday might work if it is before noon, otherwise people might be on the way into the weekend. In all other cases you may offer to look for a guide giving the tour anyway (see the point about the group size above).&lt;br /&gt;
** Make sure that there is '''no tour scheduled already'''! For that look into our online calendar (the link can be found below) and on the whiteboard in the copying machine office.&lt;br /&gt;
** Related to the last point ensure that there is '''no lab course''' running at the date! The lab course is also marked in our online calendar.&lt;br /&gt;
** Usually, a tour will take '''about 1.5 to 2 hours'''.&lt;br /&gt;
* See [[Guided Tours and Public Outreach#Tip policy]] for information on the &amp;quot;price&amp;quot; of guided tours.&lt;br /&gt;
* '''Observing with our telescopes''' is possible, of course, but only in case of '''night and cloudless weather'''! No kidding, some people are not aware of these facts... &amp;lt;br&amp;gt; (&amp;quot;The day is too bright to see stars.&amp;quot;, &amp;quot;I'm sorry, we can't look trough the clouds.&amp;quot;, &amp;quot;The weather forecast is too uncertain, we can't promise.&amp;quot;) Please check if someone else has already signed in for one of the telescopes on the day/night of the guided tour!  '''IMPORTANT:'''  Be aware that you are not allowed to operate the telescopes on you own, there ALWAYS has to be at least a second person around. To assure that, you either have to have a second person from the observatory present (at least in the main building) or you have to set up AND disassemble everything while the people from the tour are there. Otherwise no observations are allowed to take place!&lt;br /&gt;
* If all the above points are clarified '''mark the tour''' &amp;lt;br&amp;gt; in our [https://www.sternwarte.uni-erlangen.de/calendar/ online calendar] and the whiteboard in the copying machine office. You have to be at a machine at the observatory to have access to the online calendar (to be more precisely: you're machine has to have an internal IP-address). &amp;lt;br&amp;gt; The entry into the online calendar, besides the date and time, should include &amp;quot;for whom is the tour and the group size, contact person and phone number, name of the guide giving the tour&amp;quot;. &amp;lt;br&amp;gt; The whiteboard template is as follows: &amp;quot;date, for whom is the tour, time, guide&amp;quot;&lt;br /&gt;
&lt;br /&gt;
= Giving a tour =&lt;br /&gt;
&lt;br /&gt;
Each tour has several stations, where you can show things or talk to the people. Useful information and experiences about that is listed below. It might be helpful as well to read the article about [[intern:Popular_science:start|popular science]] in case you want or have to (if somebody asks) explain scientific aspects.&lt;br /&gt;
&lt;br /&gt;
Note that there is also a separate page about guided tour stations: https://www.sternwarte.uni-erlangen.de/wiki/index.php/Guided_tour_stations&lt;br /&gt;
&lt;br /&gt;
== Preparation ==&lt;br /&gt;
&lt;br /&gt;
'''Before the tour'''&lt;br /&gt;
* Shut the doors of all offices in the main building (at least on the ground level) for several reasons: people are not allowed to walk in there and some of us are still working there during tours!&lt;br /&gt;
* Remove the northern hemisphere from the model of the inner solar system located in the entrance hall (you may put it into the Knigge room)&lt;br /&gt;
* Switch the lights on you need:&lt;br /&gt;
** entrance hall&lt;br /&gt;
** meteorite showcase (switch is on the right next to it)&lt;br /&gt;
** hallway to the meridian building; here are multiple switches&lt;br /&gt;
*** main light: right next to the door of the hallway or the backdoor of the main building (labeled &amp;quot;Meridian&amp;quot;)&lt;br /&gt;
*** info panels: on the opposite wall to the door next to the blue cupboard&lt;br /&gt;
*** showcases and Blinkkomparator: in the cutout box up the few stairs on the right wall close to the library, labeled &amp;quot;Linke Steckdosen&amp;quot;&lt;br /&gt;
* In case of observations&lt;br /&gt;
** make sure that you are '''never''' alone in the domes! There always have to be at least two people present.&lt;br /&gt;
** carry the needed oculars into the domes (for observations with the naked eye, the 40cm telescope is strongly recommended)&lt;br /&gt;
** do __not__ open the domes (first, it might start raining while nobody is there, and it's more fun for you to let the people do it)&lt;br /&gt;
** do __not__ remove the dust covers of the telescopes (wait until the dome has been opened)&lt;br /&gt;
** read the [[remeis:start|guide how to operate the telescopes and mountings]]&lt;br /&gt;
** after observing: shut down the telescope mounting, put the dust covers back on and close the domes&lt;br /&gt;
* In case of showing nice pictures&lt;br /&gt;
** make sure enough chairs are available&lt;br /&gt;
** switch on the beamer in the library, log into the machine and start your presentation, picture-viewer, ...&lt;br /&gt;
 &lt;br /&gt;
'''After the tour'''&lt;br /&gt;
* Switch the lights off&lt;br /&gt;
* Logout of the used machines and switch the beamer off&lt;br /&gt;
* Put on the dust covers of the telescopes in the hallway&lt;br /&gt;
* Protect the photo plates on the Blinkkomparator from getting dusty&lt;br /&gt;
* '''Move the entry from the whiteboard''' in the copying machine office '''to the list attached to the pin-board''' next to it&lt;br /&gt;
&lt;br /&gt;
== Material and Presentations ==&lt;br /&gt;
*Collected information valuable for guided tours: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours'' and ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/guidedtour.pdf''&lt;br /&gt;
&lt;br /&gt;
*A merger of (picture/video) presentations given at guided tours: &amp;lt;br&amp;gt; ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/guidedtour.odp'' &lt;br /&gt;
&lt;br /&gt;
*Short collection of notes on using the CHT during tours:  &amp;lt;br&amp;gt; ''/home/thalhammer/userdata/guided_tours/how_to_cht/main.pdf''&lt;br /&gt;
&lt;br /&gt;
*and according videos in  &amp;lt;br&amp;gt; ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/videos/''&lt;br /&gt;
&lt;br /&gt;
*Research and activities at Remeis from the radio to the gamma-rays (Tobi Beuchert): &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Andrea_tour_material/observations_allwavelength_remeisresearch_beuchert.pdf''&lt;br /&gt;
&lt;br /&gt;
*A presentation showing the astrophotography done at the observatory: &amp;lt;br&amp;gt; ''/data/media/slideshow_astrophotographie/optische_Quellen.pdf''&lt;br /&gt;
&lt;br /&gt;
*A video tour with Joern: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Joerns_example_tour''&lt;br /&gt;
&lt;br /&gt;
*A video tour with Uli (only hallway): &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Ulis_example_tour_hall_2019''&lt;br /&gt;
&lt;br /&gt;
*A complete tour by Sebastian Müller: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Sebastians_example_tour''&lt;br /&gt;
&lt;br /&gt;
*Presentations for tours by Andrea Gokus: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Andrea_tour_material'' &amp;lt;br&amp;gt; Contains presentations about the solar system (solar_system.pdf), neutrinos (neutrino_talk.pdf), overview of different objet types (impressions_universe.pdf)&lt;br /&gt;
&lt;br /&gt;
*Andreas tour notes: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Andrea_tour_material/Sternwarten_Fuehrungsnotizen.pdf''&lt;br /&gt;
&lt;br /&gt;
*Amys tour notes: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Guided_Tour_Information_Amy.pdf''&lt;br /&gt;
&lt;br /&gt;
*Tobis tour notes: &amp;lt;br&amp;gt; ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/guidedtour.pdf''&lt;br /&gt;
&lt;br /&gt;
*Information on clocks: &amp;lt;br&amp;gt; ''/data/media/history/2009-01_KlassikUhren_Poehlmann_Max_Ort.pdf''&lt;br /&gt;
&lt;br /&gt;
*Information on history of the observatory and the collection: &amp;lt;br&amp;gt; ''/data/media/history/AstronomischeSammlung.pdf''&lt;br /&gt;
&lt;br /&gt;
*History of the observatory (Litten): &amp;lt;br&amp;gt; ''/data/media/history/Litten-1.pdf'' &amp;lt;br&amp;gt; ''/data/media/history/Litten-2.pdf''&lt;br /&gt;
&lt;br /&gt;
*Last will of Dr. Karl Remeis: &amp;lt;br&amp;gt; ''/data/media/history/Testament_Karl_Remeis.pdf''&lt;br /&gt;
&lt;br /&gt;
*Die Remeis-Sternwarte zu Bamberg 1889-1939, E. Zinner: &amp;lt;br&amp;gt; [https://articles.adsabs.harvard.edu/cgi-bin/nph-iarticle_query?1939VeBam...4....1Z&amp;amp;amp;data_type=PDF_HIGH&amp;amp;amp;whole_paper=YES&amp;amp;amp;type=PRINTER&amp;amp;amp;filetype=.pdf ADS]&lt;br /&gt;
&lt;br /&gt;
== Picture presentation ==&lt;br /&gt;
&lt;br /&gt;
There are different modes for the beamer (e.g. presentation, videos, graphics etc.) which result in a different appearance of the images. Make sure to select a presentation mode in which the pictures appear in an appropriate brightness on the screen. (I think &amp;quot;graphics&amp;quot; was a good one).&lt;br /&gt;
&lt;br /&gt;
== Telescopes in the domes ==&lt;br /&gt;
It's nice to show the main mirror to the people so that they can see themselves. To do so, just turn down the telescope in declination. This is only possible for the 40cm as the 50cm-Mount has a mechanical stop.&lt;br /&gt;
&lt;br /&gt;
Sometimes people want to know what we do with the tiny, little telescopes attached on the side of the big ones. Those are guiding-scopes. You can attach a camera to them and let it take pictures of one star. If the star moves (what it shouldn't do) a correction signal is sent to the mount to compensate the movement of the star. Stars can &amp;quot;move&amp;quot; in an image for example due to impreciseness of the mount. &lt;br /&gt;
&lt;br /&gt;
The (dusty) plate in front of the 40cm mirror is called &amp;quot;Schmid-Platte&amp;quot;. It is used to improve the imaging of the telescope and to correct several errors of the mirrors like coma and field-curvature. As it is very sensitive to scratching, it won't be cleaned and left dusty. But the dust has hardly any effect on the images as it lays far outside of the focusplane. The optical design is similar to a Ritchey-Chrétien type regarding the capability, but has a spherical main mirror, an aspherical secondary mirror and a lens-corrector (=Schmidt-plate). The price of the telescope and the mount is roughly about 25.000€ altogether.&lt;br /&gt;
&lt;br /&gt;
The 50cm doesn't have a Schmid-Platte but a corrector (lenses) placed in the OAZ. It has an elliptical main mirror and a spherical secondary mirror (Corrected Dall Kirkham). The price of the telescope and the mount is roughly about 65.000€. The secondary mirror is, compared to the size of the main mirror, significantly larger than the 40cm-sec. mirror. This results in a better luminosity an a larger, flat-field which is important for taking images. We can achieve tracking accuracies of about 10min without guiding.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Tours looking for a guide ==&lt;br /&gt;
ATTENTION: tours are not sorted by the date of the tour, but by their request date!&amp;lt;br&amp;gt;&lt;br /&gt;
If you want to give a tour, just email the [mailto:fuehrungen@foerderverein-sternwarte-bamberg.de guide organizers].&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align: center;&lt;br /&gt;
! Date &amp;amp; Time&lt;br /&gt;
! Language&lt;br /&gt;
! Organizer &lt;br /&gt;
! Additional information &lt;br /&gt;
! Group&lt;br /&gt;
! Observing&lt;br /&gt;
! Deadline for guides&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Monday, 30.06.2025 at 21:00&lt;br /&gt;
| German or English&lt;br /&gt;
| Uni Bamberg (AG Theo)&lt;br /&gt;
| Tour also possible on July 7&lt;br /&gt;
| 25 adults&lt;br /&gt;
| Yes&lt;br /&gt;
| 09.06.2025&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Thursday, 27.11.2025 at 19:00&lt;br /&gt;
| German&lt;br /&gt;
| Rotary Club Bamberg (Grupp)&lt;br /&gt;
| 2 guides required! Tour also possible on 29.01.2026 or 26.02.2026.&lt;br /&gt;
| 30 adults&lt;br /&gt;
| Yes&lt;br /&gt;
| 30.05.2025&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Thalhammer</name></author>
	</entry>
	<entry>
		<id>https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Nicer&amp;diff=3671</id>
		<title>Nicer</title>
		<link rel="alternate" type="text/html" href="https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Nicer&amp;diff=3671"/>
		<updated>2025-04-10T13:31:29Z</updated>

		<summary type="html">&lt;p&gt;Thalhammer: Update on RMF/ARF selection&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== NICER data extraction ==&lt;br /&gt;
&lt;br /&gt;
NICER is a soft X-ray observatory on board the ISS. Biggest difference to many&lt;br /&gt;
other modern X-ray satellites are its silicon drift detectors and X-ray&lt;br /&gt;
concentrators (instead of focusing mirrors), which together do not permit&lt;br /&gt;
imaging capabilities. While this simplifies the data extraction, it is also required  &lt;br /&gt;
to simulate a background for each observation. &amp;lt;br /&amp;gt; Previously downloaded&lt;br /&gt;
NICER observations can be found under /data/X-ray/nicer/. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Preparation:=== &lt;br /&gt;
&lt;br /&gt;
To apply the the latest calibration and filtering, first run&lt;br /&gt;
'xtiprepare'.   The script will produce  cleaned event&lt;br /&gt;
files inside the subdirectory 'reprocessed' inside 'prepdir'.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/csh&lt;br /&gt;
&lt;br /&gt;
set datadir = /data/X-ray/nicer/data/2200570101&lt;br /&gt;
set prepdir = '/userdata/data/$user/where/ever/you/want'&lt;br /&gt;
&lt;br /&gt;
xtiprepare --datadir=$datadir  --prepdir=$prepdir  &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you notice an increased background in the resulting spectra, you&lt;br /&gt;
can apply additional filter criteria during the preparation. See&lt;br /&gt;
'xtiprepare --help' for more information. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Spectrum and Light-curve Extraction:===&lt;br /&gt;
&lt;br /&gt;
To produce light-curves, spectra and apply barycenter correction&lt;br /&gt;
'xtiextract' can be used as follows.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/csh&lt;br /&gt;
&lt;br /&gt;
set prepdir = '/userdata/data/$user/where/ever/you/want'&lt;br /&gt;
set dirname = 'extraction_123'&lt;br /&gt;
&lt;br /&gt;
xtiextract --name=$dirname --prepdir=$prepdir&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The produced spectrum and light-curve can then be found in the&lt;br /&gt;
subdirecory 'dirname' in $prepdir. Observation-specific &lt;br /&gt;
response files are generated and header keywords are set accordingly. It is still advisable to double-check that they are correctly loaded into e.g. ISIS. &lt;br /&gt;
&lt;br /&gt;
=== Background generation: ===&lt;br /&gt;
&lt;br /&gt;
As we cannot produce a background spectrum from an off-source region on the&lt;br /&gt;
detector, a background spectrum has to be modeled. Currently there are three&lt;br /&gt;
different tools available for that purpose (sw', '3c50' and 'scorpeon'). &lt;br /&gt;
One based on external parameters during the observation (i.e., space weather, &lt;br /&gt;
solar angle and cutoff-rigidity of earths B-field), one based on the internal &lt;br /&gt;
distribution of measured events and  one using both and giving the user the &lt;br /&gt;
option to adjust/fit the different background components. &lt;br /&gt;
&lt;br /&gt;
You can switch between them using the bkgmod_ parameter of extraction. &lt;br /&gt;
Only the sw-model is currently able to also provide background light-curves.&lt;br /&gt;
For more information see :&amp;lt;br /&amp;gt;&lt;br /&gt;
https://heasarc.gsfc.nasa.gov/docs/nicer/tools/nicer_bkg_est_tools.html&lt;br /&gt;
&lt;br /&gt;
=== Issues to keep in mind:  ===&lt;br /&gt;
&lt;br /&gt;
Feel free to expand this list whenever you came across any new issues.&lt;br /&gt;
&lt;br /&gt;
''' Optical loading: '''&lt;br /&gt;
&lt;br /&gt;
When optical light is reflected onto the detectors, this can&lt;br /&gt;
significantly increase the low-energy background below 3keV. This is&lt;br /&gt;
most significant for solar angles below ~70 degrees. However, due to&lt;br /&gt;
its position on the ISS this can also happen at any solar angle when&lt;br /&gt;
light is reflected by other part of the ISS. &lt;br /&gt;
&lt;br /&gt;
''' Polar Horns: '''&lt;br /&gt;
&lt;br /&gt;
Unlike other observatories in LEO the ISS is on an orbit with a quite&lt;br /&gt;
high inclination of 51.6 degrees.  This means the ISS passes through&lt;br /&gt;
the so called polar horn regions, where the outer Van Allen belt reach&lt;br /&gt;
LEO. These regions can feature an increased population of energetic&lt;br /&gt;
electrons, which can induce a strong background signal in NICER,&lt;br /&gt;
particular at higher energies. &amp;lt;br /&amp;gt;&lt;br /&gt;
See this &amp;quot;science nugget&amp;quot; for more information:&amp;lt;br /&amp;gt;&lt;br /&gt;
https://heasarc.gsfc.nasa.gov/docs/nicer/science_nuggets/20180809.html&lt;br /&gt;
&lt;br /&gt;
''' Overly aggressive filtering: '''&lt;br /&gt;
&lt;br /&gt;
It can happen, that e.g. optical loading leads to a filter parameter&lt;br /&gt;
exceeding the standard filter criteria for most of certain&lt;br /&gt;
observations. &lt;br /&gt;
If that happens you should check the .mkf-file and see whether any of the parameters &lt;br /&gt;
exceeds the default filter criteria specified in the fhelp of nimaketime. &lt;br /&gt;
This can be done e.g. using fplot:&lt;br /&gt;
  fplot *.mkf TIME &amp;quot;FPM_UNDERONLY_COUNT SUN_ANGLE FPM_OVERONLY_COUNT SUNSHINE &amp;quot;&lt;br /&gt;
&lt;br /&gt;
Such an observation might still be of interest, however.&lt;br /&gt;
In that case one might want to increase the allowed range e.g. for&lt;br /&gt;
&amp;quot;underonly_range&amp;quot; in &amp;quot;xtiprepare&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
''' Large event files: '''&lt;br /&gt;
&lt;br /&gt;
The downloaded eventfiles are generally compressed and are extracted to memory &lt;br /&gt;
before the data processing.  This fails for large eventfiles of several GB. &lt;br /&gt;
In this case one has to unzip the file event_cl/niXXXXXXXXXX_0mpu7_ufa.evt.gz &lt;br /&gt;
before running xtiprepare.&lt;br /&gt;
&lt;br /&gt;
''' Active FPMs: '''&lt;br /&gt;
&lt;br /&gt;
NICER has 56 focal-plane modules (FPMs) of which 52 are usually active. For&lt;br /&gt;
different reasons, e.g. annealing, sometimes some FPMs are switched off. And&lt;br /&gt;
sometimes you have excluded certain FPMs because of their increased background&lt;br /&gt;
(especially FPM 14 &amp;amp; 34). In both cases you have to be careful to scale the ARF&lt;br /&gt;
or generate a new one. So one should check the event files how many detectors where&lt;br /&gt;
active during the observation. &amp;lt;br /&amp;gt;&lt;br /&gt;
More info here: https://heasarc.gsfc.nasa.gov/docs/nicer/analysis_threads/arf-rmf/&lt;br /&gt;
&lt;br /&gt;
''' Damage to the optical bench '''&lt;br /&gt;
&lt;br /&gt;
On May 22, 2023, between 13:00 and 14:00 UTC, NICER appears to have developed a &lt;br /&gt;
visible-light leak in the X-ray Timing Instrument (XTI) optical bench. This leads to &lt;br /&gt;
and increase in the undershoot rate, background at soft energies and can lead to &lt;br /&gt;
detectors switching off, telemetry saturation, and spurious timing features.&lt;br /&gt;
This only affects observations performed during orbital days. Night time observations &lt;br /&gt;
are unaffected. &lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
[[Category:Data Extraction]]&lt;/div&gt;</summary>
		<author><name>Thalhammer</name></author>
	</entry>
	<entry>
		<id>https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Chandra&amp;diff=3616</id>
		<title>Chandra</title>
		<link rel="alternate" type="text/html" href="https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Chandra&amp;diff=3616"/>
		<updated>2025-03-06T17:03:04Z</updated>

		<summary type="html">&lt;p&gt;Thalhammer: /* Chandra */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;====== Chandra ======&lt;br /&gt;
&lt;br /&gt;
Generally, if you run into errors, try and unload HEASoft.&lt;br /&gt;
&lt;br /&gt;
===== HETG =====&lt;br /&gt;
&lt;br /&gt;
As of Aug 2014, the old Chandra HETG extraction scripts by Manfred are deprecated. They were good for Ciao Versions up to 4.2. Ciao 4.3 already has a bug that does not cause error messages with this script but whose bug fix is not implemented. On top of that a lot has changed. We have newer extraction scripts working with Ciao-4.6 that should be much easier to maintain with future changes to data preparation with Ciao, as the data preparation is now based on ''chandra_repro''. &lt;br /&gt;
&lt;br /&gt;
Data preparation and data extraction are two separate steps, i.e., the data only needs to be prepared / reprocessed once (making sure the newest and most appropriate CALDB information is used for each observation), but then can be used for extration of spectra, lightcurves, and images multiple times, e.g., with different GTIs. The scripts can be found at:&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
/data/system/software/scripts/chandrascripts/&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
and are called ''chandraprepare'' and ''gratingsextract''. Calling the scripts with no option or with ''--help'' will print a description of available options / arguments to STDOUT. &lt;br /&gt;
&lt;br /&gt;
==== Caveats ====&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
The scripts currently have issues with data in CC mode. &lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
If there are multiple event1 files in the archive directory, the script will exit with a warning.&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
Correct use of multi-event1 file observation is pending implementation. Talk to the Remeis Chandra-point of contact. &lt;br /&gt;
&lt;br /&gt;
==== chandraprepare ====&lt;br /&gt;
Example bash script to call chandraprepare (update the Ciao version if applicable):&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/bash&lt;br /&gt;
&lt;br /&gt;
. /data/system/software/chandra/ciao-4.6/ciao-4.6/bin/ciao.bash&lt;br /&gt;
&lt;br /&gt;
export CHANDRATOOLS=/data/system/software/scripts/chandrascripts&lt;br /&gt;
&lt;br /&gt;
chandraprepare=${CHANDRATOOLS}/chandraprepare&lt;br /&gt;
&lt;br /&gt;
cdata=/eu/X-ray/Chandra/archive/${obsid}/&lt;br /&gt;
obsid=1600&lt;br /&gt;
datadir=${cdata}/${obsid}&lt;br /&gt;
&lt;br /&gt;
${chandraprepare} --datadir=${datadir} --prepdir=test${obsid}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== gratingsextract ====&lt;br /&gt;
Example bash script to call gratingsextract (update the Ciao version if applicable):&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/bash&lt;br /&gt;
&lt;br /&gt;
. /data/system/software/chandra/ciao-4.6/ciao-4.6/bin/ciao.bash&lt;br /&gt;
&lt;br /&gt;
export CHANDRATOOLS=/data/system/software/scripts/chandrascripts&lt;br /&gt;
&lt;br /&gt;
extract=${CHANDRATOOLS}/gratingsextract&lt;br /&gt;
&lt;br /&gt;
obsid=1600&lt;br /&gt;
name=full&lt;br /&gt;
&lt;br /&gt;
${extract} --prepdir=${obsid} --name=${name} --heg --meg --order=-1,1 --dt=25.5 --energyband=500,1500,3000,10000&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Loading data in ISIS ====&lt;br /&gt;
The above scripts create individual files for each arm/order, even for lightcurves. While the old Manfred-scripts wrote loadscripts to ease loading the data in ISIS, the new script do not provide ''loaddata.sl'' scripts anymore. The naming scheme for the extracted data changed slightly and is now generic enough to allow for common load functions for HETG data. Talk to Natalie for functions that easily load spectral data (preserving the order established by the old extraction scripts to allow for compatibility with old isis ''par'' files), individual lightcurves and the sum over lightcurves.&lt;br /&gt;
&lt;br /&gt;
Eventually, these function will make it into the ''isisscripts''.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===== LETG =====&lt;br /&gt;
&lt;br /&gt;
Theoretically, the new scripts described above can handle LETG observations. However, this is largely untested.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===== ACIS-I =====&lt;br /&gt;
Global scripts are yet missing.&lt;br /&gt;
&lt;br /&gt;
[[Category:Data Extraction]]&lt;/div&gt;</summary>
		<author><name>Thalhammer</name></author>
	</entry>
	<entry>
		<id>https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Chandra&amp;diff=3615</id>
		<title>Chandra</title>
		<link rel="alternate" type="text/html" href="https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Chandra&amp;diff=3615"/>
		<updated>2025-03-06T17:02:40Z</updated>

		<summary type="html">&lt;p&gt;Thalhammer: /* Chandra */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;====== Chandra ======&lt;br /&gt;
&lt;br /&gt;
If you run into errors, try and unload HEASoft.&lt;br /&gt;
&lt;br /&gt;
===== HETG =====&lt;br /&gt;
&lt;br /&gt;
As of Aug 2014, the old Chandra HETG extraction scripts by Manfred are deprecated. They were good for Ciao Versions up to 4.2. Ciao 4.3 already has a bug that does not cause error messages with this script but whose bug fix is not implemented. On top of that a lot has changed. We have newer extraction scripts working with Ciao-4.6 that should be much easier to maintain with future changes to data preparation with Ciao, as the data preparation is now based on ''chandra_repro''. &lt;br /&gt;
&lt;br /&gt;
Data preparation and data extraction are two separate steps, i.e., the data only needs to be prepared / reprocessed once (making sure the newest and most appropriate CALDB information is used for each observation), but then can be used for extration of spectra, lightcurves, and images multiple times, e.g., with different GTIs. The scripts can be found at:&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
/data/system/software/scripts/chandrascripts/&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
and are called ''chandraprepare'' and ''gratingsextract''. Calling the scripts with no option or with ''--help'' will print a description of available options / arguments to STDOUT. &lt;br /&gt;
&lt;br /&gt;
==== Caveats ====&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
The scripts currently have issues with data in CC mode. &lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
If there are multiple event1 files in the archive directory, the script will exit with a warning.&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
Correct use of multi-event1 file observation is pending implementation. Talk to the Remeis Chandra-point of contact. &lt;br /&gt;
&lt;br /&gt;
==== chandraprepare ====&lt;br /&gt;
Example bash script to call chandraprepare (update the Ciao version if applicable):&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/bash&lt;br /&gt;
&lt;br /&gt;
. /data/system/software/chandra/ciao-4.6/ciao-4.6/bin/ciao.bash&lt;br /&gt;
&lt;br /&gt;
export CHANDRATOOLS=/data/system/software/scripts/chandrascripts&lt;br /&gt;
&lt;br /&gt;
chandraprepare=${CHANDRATOOLS}/chandraprepare&lt;br /&gt;
&lt;br /&gt;
cdata=/eu/X-ray/Chandra/archive/${obsid}/&lt;br /&gt;
obsid=1600&lt;br /&gt;
datadir=${cdata}/${obsid}&lt;br /&gt;
&lt;br /&gt;
${chandraprepare} --datadir=${datadir} --prepdir=test${obsid}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== gratingsextract ====&lt;br /&gt;
Example bash script to call gratingsextract (update the Ciao version if applicable):&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/bash&lt;br /&gt;
&lt;br /&gt;
. /data/system/software/chandra/ciao-4.6/ciao-4.6/bin/ciao.bash&lt;br /&gt;
&lt;br /&gt;
export CHANDRATOOLS=/data/system/software/scripts/chandrascripts&lt;br /&gt;
&lt;br /&gt;
extract=${CHANDRATOOLS}/gratingsextract&lt;br /&gt;
&lt;br /&gt;
obsid=1600&lt;br /&gt;
name=full&lt;br /&gt;
&lt;br /&gt;
${extract} --prepdir=${obsid} --name=${name} --heg --meg --order=-1,1 --dt=25.5 --energyband=500,1500,3000,10000&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Loading data in ISIS ====&lt;br /&gt;
The above scripts create individual files for each arm/order, even for lightcurves. While the old Manfred-scripts wrote loadscripts to ease loading the data in ISIS, the new script do not provide ''loaddata.sl'' scripts anymore. The naming scheme for the extracted data changed slightly and is now generic enough to allow for common load functions for HETG data. Talk to Natalie for functions that easily load spectral data (preserving the order established by the old extraction scripts to allow for compatibility with old isis ''par'' files), individual lightcurves and the sum over lightcurves.&lt;br /&gt;
&lt;br /&gt;
Eventually, these function will make it into the ''isisscripts''.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===== LETG =====&lt;br /&gt;
&lt;br /&gt;
Theoretically, the new scripts described above can handle LETG observations. However, this is largely untested.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===== ACIS-I =====&lt;br /&gt;
Global scripts are yet missing.&lt;br /&gt;
&lt;br /&gt;
[[Category:Data Extraction]]&lt;/div&gt;</summary>
		<author><name>Thalhammer</name></author>
	</entry>
	<entry>
		<id>https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Guided_tour_stations&amp;diff=3536</id>
		<title>Guided tour stations</title>
		<link rel="alternate" type="text/html" href="https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Guided_tour_stations&amp;diff=3536"/>
		<updated>2024-12-12T14:14:31Z</updated>

		<summary type="html">&lt;p&gt;Thalhammer: /* Coelostat */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a collection of the stations that can be visited during a tour through the observatory. This page is meant to give some information on those stations, what they show, where they came from, and what they have been used for (if applicable).&lt;br /&gt;
&lt;br /&gt;
== Hallway ==&lt;br /&gt;
&lt;br /&gt;
''The information here is mostly taken from the tour given by Joern and recorded by Matthias.''&lt;br /&gt;
&lt;br /&gt;
=== Dr. Karl Remeis' telescope ===&lt;br /&gt;
&lt;br /&gt;
[[File:remeis-table-telescope.jpg|center|150px|Dr. Karl Remeis' table telscope]]&lt;br /&gt;
This telescope was owned privately by Dr. Karl Remeis. It was manufactured in the workshop of Utzschneider and Frauenhofer between 1815 and 1845. It has a very small field of view, more similar to Newtons' telescope.&lt;br /&gt;
&lt;br /&gt;
=== First glass cabinet ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=150px&amp;gt;&lt;br /&gt;
File:first-glass-cabinet-left.jpg|Glass cabinet left side&lt;br /&gt;
File:first-glass-cabinet-right.jpg|Glass cabinet right side&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
The cabinet contains a collection of instruments used to measure positions and to calibrate instruments. On the bottom left are levels to determined the plane of the horizon. A level calibrator allows to check the accuracy of the instrument. A screw allows to adjust where the air bubble inside the level is. If the level is oriented parallel to the horizontal plane the air bubble is in the center of the scale.&lt;br /&gt;
&lt;br /&gt;
The bottom right wooden construction is used as an artificial horizon. In some cases, where it is difficult to determine the horizon plane, a reflecting liquid (like mercury) is poured on the surface. Due to the law of reflection the incoming and reflected light has the same angle at the reflection surface. From this the horizontal plane can be determined. The containers in the back were used to store the reflecting liquids. The wooden housing on the right is used to shield against motion of the air.&lt;br /&gt;
&lt;br /&gt;
The two instruments on the wall are an Oktant and Sextant. Both are used to measure angles from the horizon. The difference between those are that an Oktant covers 1/8th of a circle, the Sextant 1/6th.&lt;br /&gt;
&lt;br /&gt;
=== First tall glass cabinet ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=150px&amp;gt;&lt;br /&gt;
File:first-tall-cabinet-bottom.jpg|First tall glass cabinet bottom&lt;br /&gt;
File:first-tall-cabinet-top.jpg|First tall glass cabinet top&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
The cabinet contains two &amp;quot;universal instruments&amp;quot;, tools that allow to measure angles between two objects. The instruments were bought by Dr. Karl Remeis.&lt;br /&gt;
&lt;br /&gt;
=== Small wooden telescope ===&lt;br /&gt;
&lt;br /&gt;
[[File:small-refractor.jpg|center|150px|Wooden telescope]]&lt;br /&gt;
&lt;br /&gt;
=== Coelostat ===&lt;br /&gt;
&lt;br /&gt;
[[File:coelostat.jpg|center|150px|Coelostat]]&lt;br /&gt;
&lt;br /&gt;
Ein Coelostat der Münchner Firma Linhoff: Er war Teil der Venustransit-Expedition 1874 zu den Aucklandinseln, und wurde 1899 von der Sternwarte erworben. Diese setzte ihn bis 1950 für einen 100-mm-Heliographen ein, mit dem 1350 Sonnenaufnahmen zur Untersuchung der Flecken entstanden. Jedoch ist einer der beiden Spiegel in der aktuellen  Konfiguration fehlerhaft montiert und wäre daher nicht funktionsfähig.&lt;br /&gt;
&lt;br /&gt;
=== Right ascension and declination disks ===&lt;br /&gt;
&lt;br /&gt;
[[File:telescope-mount-disks.jpg|center|150px|Right ascension and declination disks]]&lt;br /&gt;
These disks get attached to the mount of the telescope and allow to adjust the orientation to precise coordinates.&lt;br /&gt;
&lt;br /&gt;
=== Hanging cabinet ===&lt;br /&gt;
&lt;br /&gt;
[[File:hanging-cabinet.jpg|center|150px|Hanging cabinet with oculars for the Schroeder refractor]]&lt;br /&gt;
&lt;br /&gt;
=== Schröder refractor ===&lt;br /&gt;
&lt;br /&gt;
[[File:schroeder-refractor.jpg|center|150px|Schroeder refractor]]&lt;br /&gt;
&lt;br /&gt;
=== Stone carved sky charts ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=150px&amp;gt;&lt;br /&gt;
File:sky-chart-stone-1.jpg|Print stone for the sky surveys (1)&lt;br /&gt;
File:sky-chart-stone-2.jpg|Print stone for the sky surveys (2)&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Telescope auto tracking ===&lt;br /&gt;
&lt;br /&gt;
[[File:auto-guider.jpg|center|150px|Mechanical auto guider with flywheels]]&lt;br /&gt;
&lt;br /&gt;
=== Second tall glass cabinet ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=150px&amp;gt;&lt;br /&gt;
File:second-tall-cabinet-bottom.jpg|Bottom&lt;br /&gt;
File:second-tall-cabinet-middle.jpg|middle&lt;br /&gt;
File:second-tall-cabinet-top.jpg|Top&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
At the bottom are two apertures that allow to reduce the light of the star under investigation for a telescope. A second, reference, star is used to match the visual brightness with this aperture. With this one can determine the relative brightness between the two stars in amounts of blocked light by the aperture.&lt;br /&gt;
&lt;br /&gt;
In the middle, prism circle (?). Similar to a Sextant, allows to measure angles but uses a full circle and prisms instead of mirrors.&lt;br /&gt;
&lt;br /&gt;
Top shows a small telescope. Origin unknown.&lt;br /&gt;
&lt;br /&gt;
=== Cameras ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=150px&amp;gt;&lt;br /&gt;
File:photo-plate-cam-1.jpg|Camera 1&lt;br /&gt;
File:photo-plate-cam-2.jpg|Camera 2&lt;br /&gt;
File:photo-plate-cam-3.jpg|Camera 3&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
The lenses in front of the gray boxes, cylinders allow to mount photo plates on their back. This way one can take pictures of the night sky. Remember, this is pre CCD times.&lt;br /&gt;
&lt;br /&gt;
=== Schmidt camera ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=150px&amp;gt;&lt;br /&gt;
File:schmidt-cam-1.jpg|Camera 1&lt;br /&gt;
File:schmidt-cam-2.jpg|Camera 2 (show inside!)&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
The design of the Schmidt camera allowed to reduce the manufacturing costs drastically. This gave hobby astronomers access to affordable instruments. It was achieved by replacing the costly parabolic mirror with a much cheaper spherical mirror plus a correction lens to reduce the errors from the spherical shape.&lt;br /&gt;
&lt;br /&gt;
=== Sky survey cabinet ===&lt;br /&gt;
&lt;br /&gt;
[[File:sky-survey-cabinet.jpg|center|150px|Survey cabinet]]&lt;br /&gt;
&lt;br /&gt;
=== Cassegrain telescope from Boyden observatory ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=150px&amp;gt;&lt;br /&gt;
File:boyde-cassegrain.jpg|Survey cabinet&lt;br /&gt;
File:survey-cam-array.jpg|Survey cabinet&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Blinkkomparator ===&lt;br /&gt;
&lt;br /&gt;
[[File:blinkkomparator.jpg|center|150px|The Blinkkomparater]]&lt;br /&gt;
&lt;br /&gt;
=== Wavelength posters ===&lt;br /&gt;
&lt;br /&gt;
=== Eclipse posters ===&lt;br /&gt;
&lt;br /&gt;
=== Sun projector ===&lt;br /&gt;
&lt;br /&gt;
[[File:sun-projector.jpg|center|150px|Sun projector]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Internal]]&lt;br /&gt;
[[Category:Guided-tours]]&lt;/div&gt;</summary>
		<author><name>Thalhammer</name></author>
	</entry>
	<entry>
		<id>https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Pulse_Profiles:_A_quickstart_guide&amp;diff=3420</id>
		<title>Pulse Profiles: A quickstart guide</title>
		<link rel="alternate" type="text/html" href="https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Pulse_Profiles:_A_quickstart_guide&amp;diff=3420"/>
		<updated>2024-06-07T15:00:34Z</updated>

		<summary type="html">&lt;p&gt;Thalhammer: /* Pulse profiles from event files */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
===  Pulse Profiles in ISIS ===&lt;br /&gt;
&lt;br /&gt;
This is a very short introduction on how to generate X-ray pulse profile in ISIS. To begin, you need either the arrival times of all the events in your observation or a light-curve of this observation. While it is less important when using a local pulse period and a short observation, it would be advisable to use barycentered times and  depending on your source apply also orbital correction (usually less important). &lt;br /&gt;
&lt;br /&gt;
In the following we will use a NICER observation of EXO 2030+375 as an example. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Pulse profiles from event files ===&lt;br /&gt;
&lt;br /&gt;
First we want to describe the generation of pulse profiles directly from the (cleaned) event file. For this we load the event file into ISIS. Then we might want to select the events by their energy, which is usually quantified in the PI or PHA parameter in the eventfile. For NICER the relationship is simply&lt;br /&gt;
 EN / 1keV  = PI * 0.01 .&lt;br /&gt;
For NuSTAR the relation would be&lt;br /&gt;
 EN / 1keV  = PI * 0.04  + 1.6 .&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;  &lt;br /&gt;
variable filename = &amp;quot;/userdata/data/thalhammer/3C50_EXO230_highres/4201960150/ni4201960150_0mpu7_cl.evt&amp;quot;;&lt;br /&gt;
&lt;br /&gt;
variable evts = fits_read_table(filename);  &lt;br /&gt;
 &lt;br /&gt;
variable n = where (50 &amp;lt; evts.pi &amp;lt; 1000 ); &lt;br /&gt;
variable tms = evts.time [n] ; &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
To find the local pulse period we use the function &amp;quot;epfold&amp;quot; (make sure to consult 'help epfold') to fold the event times onto a range of trial pulse periods and calculate according to some statistic where the resulting profile shows the most deviation from flat noise.  &lt;br /&gt;
It is crucial for both speed and accuracy of this step to provide a reasonable range of periods. &lt;br /&gt;
Further you want to provide the GTIs where events were actually detectable. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;  &lt;br /&gt;
variable gti = fits_read_table( filename + &amp;quot;[GTI]&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
variable ep = epfold(tms,41.15,41.25;gti=gti);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To find the local period we will first have a look at the resulting statistic and determine its maximum. You know that your results are reliable if the plot below &amp;quot;looks like its giving you the finger&amp;quot; and has a clear maximum: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;  &lt;br /&gt;
xlabel(&amp;quot;ep.p&amp;quot;); ylabel(&amp;quot;ep.stat&amp;quot;);&lt;br /&gt;
plot(ep.p , ep.stat);&lt;br /&gt;
&lt;br /&gt;
variable p = ep.p [wherefirstmax (ep.stat)];&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[file:Epfold.png|560px]]&lt;br /&gt;
&lt;br /&gt;
Finding the peak of this function can also be made more precise, e.g. by fitting a Gaussian, but we will keep it simple in this example. Now that we know the local period, we can simply fold on this period to get profile. Consult &amp;quot;help pfold&amp;quot; if you want e.g. a higher number of phase bins: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;  &lt;br /&gt;
variable pf = pfold(tms, p ;gti=gti);&lt;br /&gt;
hplot_with_err (pf);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
[[file:Pprofile.png|560px]]&lt;br /&gt;
&lt;br /&gt;
=== Pulse profiles from light-curves ===&lt;br /&gt;
&lt;br /&gt;
The whole thing can also be done using light-curves. The advantage is that this includes for some observatories, e.g. NuSTAR, additional corrections such as vignetting. Further this allows for background to be subtracted. However, each energy selection requires a new run of e.g nuextract.  The script would then look like this:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt; &lt;br /&gt;
variable filename = &amp;quot;ni4201960150_0.01s_0500eV-10000eV.lc&amp;quot;;&lt;br /&gt;
variable dt = 0.01; &lt;br /&gt;
variable lc = fits_read_table(filename);&lt;br /&gt;
variable gti = fits_read_table(filename+&amp;quot;[GTI]&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
variable ep = epfold(lc.time,lc.rate,41.0,41.4;gti=gti ,dt=dt*lc.fracexp);&lt;br /&gt;
variable p = ep.p [wherefirstmax (ep.stat)];&lt;br /&gt;
&lt;br /&gt;
variable pf = pfold(lc.time,lc.rate, p;dt=dt,gti=gti,fracexp=lc.fracexp);&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
=== Further resources: ===&lt;br /&gt;
* It might be interesting to read up on some of the higher level functions implemented by Matthias: find_peak, pulseperiod_search, pulseperiod_magic, pulseperiod_epfold&lt;br /&gt;
* There is also a pulse profile review in work. A draft of which can be obtained e.g. by asking Joern. &lt;br /&gt;
&lt;br /&gt;
[[Category:Isis / Slang]]&lt;/div&gt;</summary>
		<author><name>Thalhammer</name></author>
	</entry>
	<entry>
		<id>https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Pulse_Profiles:_A_quickstart_guide&amp;diff=3419</id>
		<title>Pulse Profiles: A quickstart guide</title>
		<link rel="alternate" type="text/html" href="https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Pulse_Profiles:_A_quickstart_guide&amp;diff=3419"/>
		<updated>2024-06-07T12:44:13Z</updated>

		<summary type="html">&lt;p&gt;Thalhammer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
===  Pulse Profiles in ISIS ===&lt;br /&gt;
&lt;br /&gt;
This is a very short introduction on how to generate X-ray pulse profile in ISIS. To begin, you need either the arrival times of all the events in your observation or a light-curve of this observation. While it is less important when using a local pulse period and a short observation, it would be advisable to use barycentered times and  depending on your source apply also orbital correction (usually less important). &lt;br /&gt;
&lt;br /&gt;
In the following we will use a NICER observation of EXO 2030+375 as an example. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Pulse profiles from event files ===&lt;br /&gt;
&lt;br /&gt;
First we want to describe the generation of pulse profiles directly from the (cleaned) event file. For this we load the event file into ISIS. Then we might want to select the events by their energy, which is usually quantified in the PI or PHA parameter in the eventfile. For NICER the relationship is simply&lt;br /&gt;
 EN / 1keV  = PI * 0.01 .&lt;br /&gt;
For NuSTAR the relation would be&lt;br /&gt;
 EN / 1keV  =  E = PI * 0.04  + 1.6 .&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;  &lt;br /&gt;
variable filename = &amp;quot;/userdata/data/thalhammer/3C50_EXO230_highres/4201960150/ni4201960150_0mpu7_cl.evt&amp;quot;;&lt;br /&gt;
&lt;br /&gt;
variable evts = fits_read_table(filename);  &lt;br /&gt;
 &lt;br /&gt;
variable n = where (50 &amp;lt; evts.pi &amp;lt; 1000 ); &lt;br /&gt;
variable tms = evts.time [n] ; &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
To find the local pulse period we use the function &amp;quot;epfold&amp;quot; (make sure to consult 'help epfold') to fold the event times onto a range of trial pulse periods and calculate according to some statistic where the resulting profile shows the most deviation from flat noise.  &lt;br /&gt;
It is crucial for both speed and accuracy of this step to provide a reasonable range of periods. &lt;br /&gt;
Further you want to provide the GTIs where events were actually detectable. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;  &lt;br /&gt;
variable gti = fits_read_table( filename + &amp;quot;[GTI]&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
variable ep = epfold(tms,41.15,41.25;gti=gti);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To find the local period we will first have a look at the resulting statistic and determine its maximum. You know that your results are reliable if the plot below &amp;quot;looks like its giving you the finger&amp;quot; and has a clear maximum: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;  &lt;br /&gt;
xlabel(&amp;quot;ep.p&amp;quot;); ylabel(&amp;quot;ep.stat&amp;quot;);&lt;br /&gt;
plot(ep.p , ep.stat);&lt;br /&gt;
&lt;br /&gt;
variable p = ep.p [wherefirstmax (ep.stat)];&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[file:Epfold.png|560px]]&lt;br /&gt;
&lt;br /&gt;
Finding the peak of this function can also be made more precise, e.g. by fitting a Gaussian, but we will keep it simple in this example. Now that we know the local period, we can simply fold on this period to get profile. Consult &amp;quot;help pfold&amp;quot; if you want e.g. a higher number of phase bins: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;  &lt;br /&gt;
variable pf = pfold(tms, p ;gti=gti);&lt;br /&gt;
hplot_with_err (pf);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
[[file:Pprofile.png|560px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Pulse profiles from light-curves ===&lt;br /&gt;
&lt;br /&gt;
The whole thing can also be done using light-curves. The advantage is that this includes for some observatories, e.g. NuSTAR, additional corrections such as vignetting. Further this allows for background to be subtracted. However, each energy selection requires a new run of e.g nuextract.  The script would then look like this:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt; &lt;br /&gt;
variable filename = &amp;quot;ni4201960150_0.01s_0500eV-10000eV.lc&amp;quot;;&lt;br /&gt;
variable dt = 0.01; &lt;br /&gt;
variable lc = fits_read_table(filename);&lt;br /&gt;
variable gti = fits_read_table(filename+&amp;quot;[GTI]&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
variable ep = epfold(lc.time,lc.rate,41.0,41.4;gti=gti ,dt=dt*lc.fracexp);&lt;br /&gt;
variable p = ep.p [wherefirstmax (ep.stat)];&lt;br /&gt;
&lt;br /&gt;
variable pf = pfold(lc.time,lc.rate, p;dt=dt,gti=gti,fracexp=lc.fracexp);&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
=== Further resources: ===&lt;br /&gt;
* It might be interesting to read up on some of the higher level functions implemented by Matthias: find_peak, pulseperiod_search, pulseperiod_magic, pulseperiod_epfold&lt;br /&gt;
* There is also a pulse profile review in work. A draft of which can be obtained e.g. by asking Joern. &lt;br /&gt;
&lt;br /&gt;
[[Category:Isis / Slang]]&lt;/div&gt;</summary>
		<author><name>Thalhammer</name></author>
	</entry>
	<entry>
		<id>https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Pulse_Profiles:_A_quickstart_guide&amp;diff=3418</id>
		<title>Pulse Profiles: A quickstart guide</title>
		<link rel="alternate" type="text/html" href="https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Pulse_Profiles:_A_quickstart_guide&amp;diff=3418"/>
		<updated>2024-06-07T12:42:42Z</updated>

		<summary type="html">&lt;p&gt;Thalhammer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
===  Pulse Profiles in ISIS ===&lt;br /&gt;
&lt;br /&gt;
This is a very short introduction on how to generate X-ray pulse profile in ISIS. To begin, you need either the arrival times of all the events in your observation or a light-curve of this observation. While it is less important when using a local pulse period and a short observation, it would be advisable to use barycentered times and  depending on your source apply also orbital correction (usually less important). &lt;br /&gt;
&lt;br /&gt;
In the following we will use a NICER observation of EXO 2030+375 as an example. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Pulse profiles from event files ===&lt;br /&gt;
&lt;br /&gt;
First we want to describe the generation of pulse profiles directly from the (cleaned) event file. For this we load the event file into ISIS. Then we might want to select the events by their energy, which is usually quantified in the PI or PHA parameter in the eventfile. For NICER the relationship is simply&lt;br /&gt;
 EN / 1keV  = PI * 0.01 .&lt;br /&gt;
For NuSTAR the relation would be&lt;br /&gt;
 EN / 1keV  =  E = PI * 0.04  + 1.6 .&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;  &lt;br /&gt;
variable filename = &amp;quot;/userdata/data/thalhammer/3C50_EXO230_highres/4201960150/ni4201960150_0mpu7_cl.evt&amp;quot;;&lt;br /&gt;
&lt;br /&gt;
variable evts = fits_read_table(filename);  &lt;br /&gt;
 &lt;br /&gt;
variable n = where (50 &amp;lt; evts.pi &amp;lt; 1000 ); &lt;br /&gt;
variable tms = evts.time [n] ; &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
To find the local pulse period we use the function &amp;quot;epfold&amp;quot; (make sure to consult 'help epfold') to fold the event times onto a range of trial pulse periods and calculate according to some statistic where the resulting profile shows the most deviation from flat noise.  &lt;br /&gt;
It is crucial for both speed and accuracy of this step to provide a reasonable range of periods. &lt;br /&gt;
Further you want to provide the GTIs where events were actually detectable. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;  &lt;br /&gt;
variable gti = fits_read_table( filename + &amp;quot;[GTI]&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
variable ep = epfold(tms,41.15,41.25;gti=gti);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To find the local period we will first have a look at the resulting statistic and determine its maximum. You know that your results are reliable if the plot below &amp;quot;looks like its giving you the finger&amp;quot; and has a clear maximum: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;  &lt;br /&gt;
xlabel(&amp;quot;ep.p&amp;quot;); ylabel(&amp;quot;ep.stat&amp;quot;);&lt;br /&gt;
plot(ep.p , ep.stat);&lt;br /&gt;
&lt;br /&gt;
variable p = ep.p [wherefirstmax (ep.stat)];&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[file:Epfold.png]]&lt;br /&gt;
&lt;br /&gt;
Finding the peak of this function can also be made more precise, e.g. by fitting a Gaussian, but we will keep it simple in this example. Now that we know the local period, we can simply fold on this period to get profile. Consult &amp;quot;help pfold&amp;quot; if you want e.g. a higher number of phase bins: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;  &lt;br /&gt;
variable pf = pfold(tms, p ;gti=gti);&lt;br /&gt;
hplot_with_err (pf);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
[[file:Pprofile.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Pulse profiles from light-curves ===&lt;br /&gt;
&lt;br /&gt;
The whole thing can also be done using light-curves. The advantage is that this includes for some observatories, e.g. NuSTAR, additional corrections such as vignetting. Further this allows for background to be subtracted. However, each energy selection requires a new run of e.g nuextract.  The script would then look like this:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt; &lt;br /&gt;
variable filename = &amp;quot;ni4201960150_0.01s_0500eV-10000eV.lc&amp;quot;;&lt;br /&gt;
variable dt = 0.01; &lt;br /&gt;
variable lc = fits_read_table(filename);&lt;br /&gt;
variable gti = fits_read_table(filename+&amp;quot;[GTI]&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
variable ep = epfold(lc.time,lc.rate,41.0,41.4;gti=gti ,dt=dt*lc.fracexp);&lt;br /&gt;
variable p = ep.p [wherefirstmax (ep.stat)];&lt;br /&gt;
&lt;br /&gt;
variable pf = pfold(lc.time,lc.rate, p;dt=dt,gti=gti,fracexp=lc.fracexp);&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
=== Further resources: ===&lt;br /&gt;
* It might be interesting to read up on some of the higher level functions implemented by Matthias: find_peak, pulseperiod_search, pulseperiod_magic, pulseperiod_epfold&lt;br /&gt;
* There is also a pulse profile review in work. A draft of which can be obtained e.g. by asking Joern. &lt;br /&gt;
&lt;br /&gt;
[[Category:Isis / Slang]]&lt;/div&gt;</summary>
		<author><name>Thalhammer</name></author>
	</entry>
	<entry>
		<id>https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Pulse_Profiles:_A_quickstart_guide&amp;diff=3417</id>
		<title>Pulse Profiles: A quickstart guide</title>
		<link rel="alternate" type="text/html" href="https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Pulse_Profiles:_A_quickstart_guide&amp;diff=3417"/>
		<updated>2024-06-07T12:37:14Z</updated>

		<summary type="html">&lt;p&gt;Thalhammer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
===  Pulse Profiles in ISIS ===&lt;br /&gt;
&lt;br /&gt;
This is a very short introduction on how to generate X-ray pulse profile in ISIS. To begin, you need either the arrival times of all the events in your observation or a light-curve of this observation. While it is less important when using a local pulse period and a short observation, it would be advisable to use barycentered times and  depending on your source apply also orbital correction (usually less important). &lt;br /&gt;
&lt;br /&gt;
In the following we will use a NICER observation of EXO 2030-375 as an example. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Pulse profiles from event files ===&lt;br /&gt;
&lt;br /&gt;
First we want to describe the generation of pulse profiles directly from the (cleaned) event file. For this we load the event file into ISIS. Then we might want to select the events by their energy, which is usually quantified in the PI or PHA parameter in the eventfile. For NICER the relationship is simply&lt;br /&gt;
 EN / 1keV  = PI * 0.01 .&lt;br /&gt;
For NuSTAR the relation would be&lt;br /&gt;
 EN / 1keV  =  E = PI * 0.04  + 1.6 .&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;  &lt;br /&gt;
variable filename = &amp;quot;/userdata/data/thalhammer/3C50_EXO230_highres/4201960150/ni4201960150_0mpu7_cl.evt&amp;quot;;&lt;br /&gt;
&lt;br /&gt;
variable evts = fits_read_table(filename);  &lt;br /&gt;
 &lt;br /&gt;
variable n = where (50 &amp;lt; evts.pi &amp;lt; 1000 ); &lt;br /&gt;
variable tms = evts.time [n] ; &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
To find the local pulse period we use the function &amp;quot;epfold&amp;quot; (make sure to consult &amp;quot;help epfold&amp;quot;) to fold the event times onto a range of trial pulse periods and calculate according to some statistic where the resulting profile shows the most deviation from flat noise.  &lt;br /&gt;
It is crucial for both speed and accuracy of this step to provide a reasonable range of periods. &lt;br /&gt;
Further you want to provide the GTIs where events were actually detectable. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;  &lt;br /&gt;
variable gti = fits_read_table( filename + &amp;quot;[GTI]&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
variable ep = epfold(tms,41.15,41.25;gti=gti);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To find the local period we will first have a look at the resulting statistic and determine its maximum. You know that your results are reliable if the plot below &amp;quot;looks like its giving you the finger&amp;quot; and has a clear maximum: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;  &lt;br /&gt;
xlabel(&amp;quot;ep.p&amp;quot;); ylabel(&amp;quot;ep.stat&amp;quot;);&lt;br /&gt;
plot(ep.p , ep.stat);&lt;br /&gt;
&lt;br /&gt;
variable p = ep.p [wherefirstmax (ep.stat)];&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[file:Epfold.png]]&lt;br /&gt;
&lt;br /&gt;
Finding the peak of this function can also be made more precise, e.g. by fitting a Gaussian, but will keep it simple in this example. Now that we know the local period, we can simply fold on this period to get profile. Consult &amp;quot;help pfold&amp;quot; if you want e.g. a higher number of phase bins: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;  &lt;br /&gt;
variable pf = pfold(tms, p ;gti=gti);&lt;br /&gt;
hplot_with_err (pf);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
[[file:Pprofile.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Pulse profiles from light-curves ===&lt;br /&gt;
&lt;br /&gt;
The whole thing can also be done using light-curves. The advantage is that this includes for some observatories, e.g. NuSTAR, addition corrections such as vignetting and a background can be subtracted. However, each energy selection requires a new run of e.g nuextract.  The script would then look like this &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt; &lt;br /&gt;
variable filename = &amp;quot;ni4201960150_0.01s_0500eV-10000eV.lc&amp;quot;;&lt;br /&gt;
variable dt = 0.01; &lt;br /&gt;
variable lc = fits_read_table(filename);&lt;br /&gt;
variable gti = fits_read_table(filename+&amp;quot;[GTI]&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
variable ep = epfold(lc.time,lc.rate,41.0,41.4;gti=gti ,dt=dt*lc.fracexp);&lt;br /&gt;
variable p = ep.p [wherefirstmax (ep.stat)];&lt;br /&gt;
&lt;br /&gt;
variable pf = pfold(lc.time,lc.rate, p;dt=dt,gti=gti,fracexp=lc.fracexp);&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
=== Further resources: ===&lt;br /&gt;
* It might be interesting to read up on the help for some of the higher level functions implemented by Matthias: find_peak, pulseperiod_search, pulseperiod_magic, pulseperiod_epfold&lt;br /&gt;
* There is also a pulse profile review in work. A draft of which can be captained from some people at the observatory&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Isis / Slang]]&lt;/div&gt;</summary>
		<author><name>Thalhammer</name></author>
	</entry>
	<entry>
		<id>https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Pulse_Profiles:_A_quickstart_guide&amp;diff=3416</id>
		<title>Pulse Profiles: A quickstart guide</title>
		<link rel="alternate" type="text/html" href="https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Pulse_Profiles:_A_quickstart_guide&amp;diff=3416"/>
		<updated>2024-06-07T12:34:29Z</updated>

		<summary type="html">&lt;p&gt;Thalhammer: Typos&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
===  Pulse Profiles in ISIS ===&lt;br /&gt;
&lt;br /&gt;
This is a very short introduction on how to generate X-ray pulse profile in ISIS. To begin, you need either the arrival times of all the events in your observation or a light-curve of this observation. While it is less important when using a local pulse period and a short observation, it would be advisable to use barycentered times and  depending on your source apply also orbital correction (usually less important). &lt;br /&gt;
&lt;br /&gt;
In the following we will use a NICER observation of EXO 2030-375 as an example. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Pulse profiles from event files ===&lt;br /&gt;
&lt;br /&gt;
First we want to describe the generation of pulse profiles directly from the (cleaned) event file. For this we load the event file into isis. Then we might want to select the event by their energy, which is usually quantified in the PI or PHA parameter. For NICER the relationship is simply&lt;br /&gt;
 EN / 1keV  = PI * 0.01&lt;br /&gt;
For NuSTAR the relation would be&lt;br /&gt;
 EN / 1keV  =  E = PI * 0.04  + 1.6  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;  &lt;br /&gt;
variable filename = &amp;quot;/userdata/data/thalhammer/3C50_EXO230_highres/4201960150/ni4201960150_0mpu7_cl.evt&amp;quot;;&lt;br /&gt;
&lt;br /&gt;
variable evts = fits_read_table(filename);  &lt;br /&gt;
 &lt;br /&gt;
variable n = where (50 &amp;lt; evts.pi &amp;lt; 1000 ); &lt;br /&gt;
variable tms = evts.time [n] ; &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
To find the local pulse period we use the function &amp;quot;epfold&amp;quot; (make sure to consult &amp;quot;help epfold&amp;quot;) to fold the event times onto a range of trial pulse profiles and calculate according to some statistic where the resulting profile shows the most deviation from flat noise.  &lt;br /&gt;
It is crucial for both speed and accuracy of this step to provide a reasonable   range of periods to sample. &lt;br /&gt;
Further you want to provide the GTIs where events where actually detectable. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;  &lt;br /&gt;
variable gti = fits_read_table( filename + &amp;quot;[GTI]&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
variable ep = epfold(tms,41.15,41.25;gti=gti);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To find the local period we will first have a look at the resulting statistic and determine its maximum. You know that your results are reliable if the plot below &amp;quot;looks like its giving you the finger&amp;quot; and has a clear maximum: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;  &lt;br /&gt;
xlabel(&amp;quot;ep.p&amp;quot;); ylabel(&amp;quot;ep.stat&amp;quot;);&lt;br /&gt;
plot(ep.p , ep.stat);&lt;br /&gt;
&lt;br /&gt;
variable p = ep.p [wherefirstmax (ep.stat)];&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[file:Epfold.png]]&lt;br /&gt;
&lt;br /&gt;
Finding the peak of this function can also be made more precise, e.g. by fitting a Gaussian, but will keep it simple in this example. Now that we know the local period, we can simply fold on this period to get profile. Consult &amp;quot;help pfold&amp;quot; if you want e.g. a higher number of phase bins: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;  &lt;br /&gt;
variable pf = pfold(tms, p ;gti=gti);&lt;br /&gt;
hplot_with_err (pf);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
[[file:Pprofile.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Pulse profiles from light-curves ===&lt;br /&gt;
&lt;br /&gt;
The whole thing can also be done using light-curves. The advantage is that this includes for some observatories, e.g. NuSTAR, addition corrections such as vignetting and a background can be subtracted. However, each energy selection requires a new run of e.g nuextract.  The script would then look like this &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt; &lt;br /&gt;
variable filename = &amp;quot;ni4201960150_0.01s_0500eV-10000eV.lc&amp;quot;;&lt;br /&gt;
variable dt = 0.01; &lt;br /&gt;
variable lc = fits_read_table(filename);&lt;br /&gt;
variable gti = fits_read_table(filename+&amp;quot;[GTI]&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
variable ep = epfold(lc.time,lc.rate,41.0,41.4;gti=gti ,dt=dt*lc.fracexp);&lt;br /&gt;
variable p = ep.p [wherefirstmax (ep.stat)];&lt;br /&gt;
&lt;br /&gt;
variable pf = pfold(lc.time,lc.rate, p;dt=dt,gti=gti,fracexp=lc.fracexp);&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
=== Further resources: ===&lt;br /&gt;
* It might be interesting to read up on the help for some of the higher level functions implemented by Matthias: find_peak, pulseperiod_search, pulseperiod_magic, pulseperiod_epfold&lt;br /&gt;
* There is also a pulse profile review in work. A draft of which can be captained from some people at the observatory&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Isis / Slang]]&lt;/div&gt;</summary>
		<author><name>Thalhammer</name></author>
	</entry>
	<entry>
		<id>https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Pulse_Profiles:_A_quickstart_guide&amp;diff=3415</id>
		<title>Pulse Profiles: A quickstart guide</title>
		<link rel="alternate" type="text/html" href="https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Pulse_Profiles:_A_quickstart_guide&amp;diff=3415"/>
		<updated>2024-06-07T12:13:24Z</updated>

		<summary type="html">&lt;p&gt;Thalhammer: Quick-start guide on pulse profiles in ISIS&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
===  Pules Profiles in ISIS ===&lt;br /&gt;
&lt;br /&gt;
This is supposed to be a very short introduction on how to generate X-ray pulse profile in ISIS. To begin with you need on either the arrival times of all the events in your observation or a light-curve of this observation. While it is less important when using a local pulse period and a short observation, it would be advisable to use barycentered times and  depending on your source apply also orbital correction (usually less important). &lt;br /&gt;
&lt;br /&gt;
In the following we will use a NICER observation of EXO 2030-375 as an example. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Pulse profiles from event files ===&lt;br /&gt;
&lt;br /&gt;
First we want to describe the generation of pulse profiles directly from the (cleaned) event file. For this we load the event file into isis. Then we might want to select the event by their energy, which is usually quantified in the PI or PHA parameter. For NICER the relationship is simply&lt;br /&gt;
 EN / 1keV  = PI * 0.01&lt;br /&gt;
For NuSTAR the relation would be&lt;br /&gt;
 EN / 1keV  =  E = PI * 0.04  + 1.6  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;  &lt;br /&gt;
variable filename = &amp;quot;/userdata/data/thalhammer/3C50_EXO230_highres/4201960150/ni4201960150_0mpu7_cl.evt&amp;quot;;&lt;br /&gt;
&lt;br /&gt;
variable evts = fits_read_table(filename);  &lt;br /&gt;
 &lt;br /&gt;
variable n = where (50 &amp;lt; evts.pi &amp;lt; 1000 ); &lt;br /&gt;
variable tms = evts.time [n] ; &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
To find the local pulse period we use the function &amp;quot;epfold&amp;quot; (make sure to consult &amp;quot;help epfold&amp;quot;) to fold the event times onto a range of trial pulse profiles and calculate according to some statistic where the resulting profile shows the most deviation from flat noise.  &lt;br /&gt;
It is crucial for both speed and accuracy of this step to provide a reasonable   range of periods to sample. &lt;br /&gt;
Further you want to provide the GTIs where events where actually detectable. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;  &lt;br /&gt;
variable gti = fits_read_table( filename + &amp;quot;[GTI]&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
variable ep = epfold(tms,41.15,41.25;gti=gti);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To find the local period we will first have a look at the resulting statistic and determine its maximum. You know that your results are reliable if the plot below &amp;quot;looks like its giving you the finger&amp;quot; and has a clear maximum: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;  &lt;br /&gt;
xlabel(&amp;quot;ep.p&amp;quot;); ylabel(&amp;quot;ep.stat&amp;quot;);&lt;br /&gt;
plot(ep.p , ep.stat);&lt;br /&gt;
&lt;br /&gt;
variable p = ep.p [wherefirstmax (ep.stat)];&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[file:Epfold.png]]&lt;br /&gt;
&lt;br /&gt;
Finding the peak of this function can also be made more precise, e.g. by fitting a Gaussian, but will keep it simple in this example. Now that we know the local period, we can simply fold on this period to get profile. Consult &amp;quot;help pfold&amp;quot; if you want e.g. a higher number of phase bins: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;  &lt;br /&gt;
variable pf = pfold(tms, p ;gti=gti);&lt;br /&gt;
hplot_with_err (pf);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
[[file:Pprofile.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Pulse profiles from light-curves ===&lt;br /&gt;
&lt;br /&gt;
The whole thing can also be done using light-curves. The advantage is that this includes for some observatories, e.g. NuSTAR, addition corrections such as vignetting and a background can be subtracted. However, each energy selection requires a new run of e.g nuextract.  The script would then look like this &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt; &lt;br /&gt;
variable filename = &amp;quot;ni4201960150_0.01s_0500eV-10000eV.lc&amp;quot;;&lt;br /&gt;
variable dt = 0.01; &lt;br /&gt;
variable lc = fits_read_table(filename);&lt;br /&gt;
variable gti = fits_read_table(filename+&amp;quot;[GTI]&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
variable ep = epfold(lc.time,lc.rate,41.0,41.4;gti=gti ,dt=dt*lc.fracexp);&lt;br /&gt;
variable p = ep.p [wherefirstmax (ep.stat)];&lt;br /&gt;
&lt;br /&gt;
variable pf = pfold(lc.time,lc.rate, p;dt=dt,gti=gti,fracexp=lc.fracexp);&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
=== Further resources: ===&lt;br /&gt;
* It might be interesting to read up on the help for some of the higher level functions implemented by Matthias: find_peak, pulseperiod_search, pulseperiod_magic, pulseperiod_epfold&lt;br /&gt;
* There is also a pulse profile review in work. A draft of which can be captained from some people at the observatory&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Isis / Slang]]&lt;/div&gt;</summary>
		<author><name>Thalhammer</name></author>
	</entry>
	<entry>
		<id>https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=File:Pprofile.png&amp;diff=3414</id>
		<title>File:Pprofile.png</title>
		<link rel="alternate" type="text/html" href="https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=File:Pprofile.png&amp;diff=3414"/>
		<updated>2024-06-07T12:08:17Z</updated>

		<summary type="html">&lt;p&gt;Thalhammer: A random pulse profile of EXO2030+375 to illustrate a typical pfold result&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
A random pulse profile of EXO2030+375 to illustrate a typical pfold result&lt;/div&gt;</summary>
		<author><name>Thalhammer</name></author>
	</entry>
	<entry>
		<id>https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=File:Epfold.png&amp;diff=3413</id>
		<title>File:Epfold.png</title>
		<link rel="alternate" type="text/html" href="https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=File:Epfold.png&amp;diff=3413"/>
		<updated>2024-06-07T12:07:16Z</updated>

		<summary type="html">&lt;p&gt;Thalhammer: Period vs Statistic of a typical epfold run&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Period vs Statistic of a typical epfold run&lt;/div&gt;</summary>
		<author><name>Thalhammer</name></author>
	</entry>
	<entry>
		<id>https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Integral&amp;diff=3386</id>
		<title>Integral</title>
		<link rel="alternate" type="text/html" href="https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Integral&amp;diff=3386"/>
		<updated>2024-04-24T20:07:54Z</updated>

		<summary type="html">&lt;p&gt;Thalhammer: Added PIF extraction&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
=== INTEGRAL Scripts ===&lt;br /&gt;
&lt;br /&gt;
The Remeis INTEGRAL scripts can be found under&lt;br /&gt;
&lt;br /&gt;
  /software/Science/satscripts/intscripts/&lt;br /&gt;
&lt;br /&gt;
on Remeis machines. If you have any questions on how to use them, read the following text and talk to Ingo or Philipp.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== General remarks on Integral data extraction at Remeis: ===&lt;br /&gt;
&lt;br /&gt;
Initially data is extracted in parallel on a ScWs basis and in a second step combined to the final products. This allows for the usage of [[Slurm|SLURM]] and leads to significantly faster extraction compared to a combined extraction on a single machine. The initial step is launch by the scripts master_sbs. The script can generate spectra and images for ISGRI and spectra for JEMX. No PICsIT, SPI or OMC analysis is run at Remeis. The resulting spectra are then combined using spe_pick while the ISGRI/IBIS images are merged using INT_mosa_ibis. As the spectral extraction requires a catalog containing the sources for which the spectral extraction should be run, it is advised to first generate images &amp;amp; a mosaic to determine, which sources are bright and detected in the field of view. &lt;br /&gt;
Generally it is a good idea, if you have not already to have a look at the OSA cookbook, e.g., to check how the paths in the data object locator (DOL) files is supposed to look like or how to prepare a suitable catalog for spectral extraction: https://www.isdc.unige.ch/integral/analysis&lt;br /&gt;
&lt;br /&gt;
Before any OSA analysis can be run the corresponding module has to be load with:&lt;br /&gt;
  ml integral-osa&lt;br /&gt;
&lt;br /&gt;
Before running any data extraction you need to set up a few soft links:&lt;br /&gt;
  ln -sf /home/X-ray/INTEGRAL/archive/aux&lt;br /&gt;
  ln -sf /home/X-ray/INTEGRAL/archive/ic&lt;br /&gt;
  ln -sf /home/X-ray/INTEGRAL/archive/idx&lt;br /&gt;
  ln -sf /home/X-ray/INTEGRAL/archive/scw&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Typical IBIS image/mosaic ===&lt;br /&gt;
; 1) Find ScWs that cover your source, e.g., pointing is &amp;lt; 10 degree away from source: &lt;br /&gt;
  objscw --scwlist &amp;quot;Cyg X-1&amp;quot; --maxdist=10 &amp;gt; scws_all.txt&lt;br /&gt;
If you want to use scws_all.txt as input for hte next step remove the header of this file, i.e, the first 6 lines. Importantly you will probalby want to select only a subset of the available observations and therefore perform some selection on the full list of science windows. As a simple example one might image to only use the latest 100 ScWs:&lt;br /&gt;
  tail -n 100 scws_all.txt &amp;gt; scws_cut.txt&lt;br /&gt;
; 2) Start the ScW based analysis:&lt;br /&gt;
  master_sbs  --job=IMA --scwlist=scws_all.txt --energies=&amp;quot;30,50,200&amp;quot; --verbose --clobber=yes  --path=$PWD &lt;br /&gt;
; 3) Generate the required input file for spe_pick&lt;br /&gt;
  txt2idx element=&amp;quot;scws_dols.txt&amp;quot; index=&amp;quot;cygx1&amp;quot;&lt;br /&gt;
; 4) Run INT_mosa_ibis to generate the a combine mosaic&lt;br /&gt;
  INT_mosa_ibis --obsgrp=$PWD --dol=scws_dols.txt --destin=$PWD/obs/mosa_cygx1&lt;br /&gt;
; 5) Check the images for artifacts and sort out affected ScWs through trial-and-error:&lt;br /&gt;
  ds9 isgri_mosa_ima.fits[2] -region found.reg -cmap b -scale sqrt -scale limits 0 60 -zoom 2&lt;br /&gt;
&lt;br /&gt;
The resulting image should look something like this: &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:mosa_cygx1.png|400px]]&lt;br /&gt;
&lt;br /&gt;
Details about the detected sources, such as there flux and detection significance can be found in the file isgri_mosa_res.fits.&lt;br /&gt;
&lt;br /&gt;
=== Typical IBIS spectral analysis ===&lt;br /&gt;
; 1) Again, find ScWs that cover your source and are of interest to you&lt;br /&gt;
; 2) Start the ScW based analysis:&lt;br /&gt;
  master_sbs  --job=SPE --scwlist=scws_cut.txt --source=&amp;quot;Cyg X-1&amp;quot;  --verbose --clobber=yes  --path=$PWD --catalog=specat.fits&lt;br /&gt;
; 3) Generate the required input file for spe_pick. Check that that all objects in the DOL file  exist.&lt;br /&gt;
  txt2idx element=&amp;quot;scws_dols.txt&amp;quot; index=&amp;quot;cygx1&amp;quot;&lt;br /&gt;
; 4) Run spe_pick to generate the final spectra&lt;br /&gt;
  spe_pick group=&amp;quot;cygx1.fits&amp;quot; source=&amp;quot;Cyg X-1&amp;quot; rootname=&amp;quot;cygX1_all&amp;quot; instrument=&amp;quot;ISGRI&amp;quot;&lt;br /&gt;
This will result in background subtracted spectra for the given source. Remember that the source name has exactly the naming in the INTEGRAL reference catalog. &lt;br /&gt;
&lt;br /&gt;
=== Typical IBIS light-curve generation ===&lt;br /&gt;
; 1) Quite similar to the spectral extraction. First find ScWs that cover your source, or reuse the previous ScW list: &lt;br /&gt;
; 2) Start the ScW based analysis, here for 100s time binning:&lt;br /&gt;
  master_sbs  --job=LC --scwlist=scws_cut.txt --source=&amp;quot;Cyg X-1&amp;quot;  --verbose --clobber=yes  --path=$PWD --catalog=specat.fits --energies=30,120 --deltat=100&lt;br /&gt;
This generates a separate light-curve for each ScW at, e.g., obs/250300170010/scw/250300170010.001/250300170010_Cyg_X-1_30-120.lc&lt;br /&gt;
; 3) These can then be merged together e.g. using fmerge or ISIS. &lt;br /&gt;
  ls obs/*/scw/*.001/*_Cyg_X-1_30-120.lc &amp;gt;&amp;gt; lcs.txt&lt;br /&gt;
  fmerge @lcs.txt Cyg_X1_ibis_lc.fits -&lt;br /&gt;
&lt;br /&gt;
=== Typical IBIS PIF light-curve generation ===&lt;br /&gt;
The above light-curves are only reliable down to a time-resolution of 1.0-0.1s. For higher timing resolution the deconvolution becomes unstable and one has to generate light-curves from the event-lists and pixel-illumination fraction (PIF). &lt;br /&gt;
&lt;br /&gt;
; 1) First event lists are generated with the respective Remeis Scripts:&lt;br /&gt;
  eventlist --path=$PWD --source=&amp;quot;Cyg X-1&amp;quot; --scw=$scw --catalog=$cat&lt;br /&gt;
This generates a event-list under &amp;quot;obs/266100220010/scw/266100220010.001/events.fits&amp;quot;. &lt;br /&gt;
For each source in the catalog and the FOV this file includes a column indicating whether a source is illuminated by the respective source.&lt;br /&gt;
; 2) Filter the eventfile e.g. with an ftools or an ISIS. &lt;br /&gt;
  fcopy &amp;quot;events.fits[2][PIF_1==1]&amp;quot; cyg_pif1.fits &lt;br /&gt;
; 3) Light-curves can then be generated e.g. with ISIS (lc_from_events)&lt;br /&gt;
  variable lc = lc_from_events(struct{time=evts.time[n], pi=evts.energy[n]};dt=dt,&lt;br /&gt;
  gti = fits_read_table(gtiname + &amp;quot;[14]&amp;quot;), minfracexp=.5);&lt;br /&gt;
&lt;br /&gt;
=== Typical JEMX spectral analysis ===&lt;br /&gt;
Until revolution 976 (Oct. 10,2010) only one JEM-X unit was operating at any give time. During that time one should therefore run the analysis for both detectors.&lt;br /&gt;
; 1) Find ScWs that cover your source. As JEMX has a smaller field of view, its max distance to the source should also be reduced to ~5 degree: &lt;br /&gt;
  objscw --scwlist &amp;quot;Cyg X-1&amp;quot; --maxdist=5 &amp;gt; scws_jmx.txt&lt;br /&gt;
And again, you will probably further select in which ScWs you are interested.&lt;br /&gt;
; 2) Generate a RMF with the required binning, e.g., 32 bins:&lt;br /&gt;
  j_rebin_rmf  binlist=STD_032&lt;br /&gt;
The RMF does not change between observations and might be reused as long as binning requirements do not change. &lt;br /&gt;
(Depending on your fitting software the resulting RMF might give you troubles and needs to be rewritten.)&lt;br /&gt;
; 3) Start the ScW based analysis with 32=2^5 logarithmic energy bins:&lt;br /&gt;
  master_sbs  --path=$PWD --scwlist=scws_jemx_cut.txt --job=SPE --source=&amp;quot;Cyg X-1&amp;quot; --jemx=1 --clobber=yes --catalog=catalog_jemx.fits --response=jemx_rebinned_rmf.fits --nChanBins=-5&lt;br /&gt;
; 4) Generate the required input file for spe_pick&lt;br /&gt;
  txt2idx element=&amp;quot;scws_jmx_dols.txt&amp;quot; index=&amp;quot;cygx1&amp;quot;&lt;br /&gt;
; 5) Run spe_pick to generate the final spectra. &lt;br /&gt;
  spe_pick group=cygx1.fits source=&amp;quot;Cyg X-1&amp;quot; rootname=&amp;quot;cygx1&amp;quot; instrument=&amp;quot;JMX1&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== JEMX images ===&lt;br /&gt;
To generate JEMX images there are no dedicated scripts at Remeis, and you have to fall back to the OSA scripts, e.g.:&lt;br /&gt;
  og_create idxSwg=scw.lst ogid=oph2 baseDir=&amp;quot;./&amp;quot; instrument=JMX1&lt;br /&gt;
  jemx_science_analysis startLevel=&amp;quot;IMA2&amp;quot; endLevel=&amp;quot;IMA2&amp;quot; jemxNum=1 COR_gainModel=2&lt;br /&gt;
&lt;br /&gt;
=== On catalogs ===&lt;br /&gt;
Adapted from the documentation: &lt;br /&gt;
While for generally image generation a user generated catalog is not required, if supplied, it needs to keeps the same format of the general reference catalog from which it was built, i.e. it has the extension of the type ”GNRL-REFR-CAT”. This is the correct extension to be used as input for the Imaging step. In Section 7.2 of the OSA manual, you are been shown how to build a catalog for the lightcurve (LCR) and spectral (SPE) step. In that case the catalog, you obtained, specat.fits, was of the type of ”ISGR-SRCLRES” which is the correct format for the LCR and SPE steps. The two formats cannot be switched, meaning that you cannot use a ”GNRL-REFR-CAT” type catalog for SPE and LCR or an ”ISGR-SRCL-RES” one for IMA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In practice one prepares the catalog used for spectral extraction from the results of the IMA step, taking only into account actually detected sources, e.g. by running the following on the results of INT_mosa_ibis:&lt;br /&gt;
 fcopy &amp;quot;isgri_srcl_res.fits[1][DETSIG&amp;gt;10]&amp;quot; specat.fits&lt;br /&gt;
&lt;br /&gt;
=== Time selection ===&lt;br /&gt;
&lt;br /&gt;
User generated GTI files can be used to perform time or phase resolved spectral analysis. This is done through the --gtiname &amp;amp; --gtiformat keywords. Consult the master_sbs help for more details. To generate GTI file it is recommended to make use of the OSA script gti_user, e.g., as follows:&lt;br /&gt;
&lt;br /&gt;
  gti_user tstart=8170.5 tstop=8171.8 unit=sec begin=0.0 end=50 step=150 repeat=653 gti=user_gti.fits clobber=yes&lt;br /&gt;
&lt;br /&gt;
Or for a to calculate a reverse bary-corrected GTI file. Not that this requires the coordinated and the DOL file of a ScW or Observation Group. &lt;br /&gt;
&lt;br /&gt;
  gti_user tstart=8393.16 unit=sec begin=0.0 end=50 step=25 repeat=600 gti=user_gti.fits clobber=yes bary=y group=og_ibis.fits+1&lt;br /&gt;
&lt;br /&gt;
Also note that the light-curves generated by  imalc_sbs through master_sbs are already barycenter corrected.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
More details can be found in the introduction to INTEGRAL analysis:&lt;br /&gt;
&lt;br /&gt;
https://www.isdc.unige.ch/integral/download/osa/doc/11.2/osa_um_intro.pdf&lt;br /&gt;
&lt;br /&gt;
=== Quick Look Analysis ===&lt;br /&gt;
&lt;br /&gt;
NRT data can also be analysed at Remeis with the usual scripts, require, however, an additional --nrt parameter in most scripts. &lt;br /&gt;
Also have a look at http://isdc.unige.ch/heavens/&lt;br /&gt;
&lt;br /&gt;
=== Documentation ===&lt;br /&gt;
&lt;br /&gt;
Useful to know:&lt;br /&gt;
http://www.isdc.unige.ch/integral/download/osa/doc/10.0/osa_um_ibis/node27.html&lt;br /&gt;
And for the cook-book and general documentation. Reading the IBIS Analysis User Manual is recommend: &lt;br /&gt;
https://www.isdc.unige.ch/integral/analysis&lt;br /&gt;
Each INTEGTAL script also has a help&lt;br /&gt;
  master_sbs --help&lt;br /&gt;
  cat $ISDC_ENV/help/ibis_science_analysis.txt&lt;br /&gt;
&lt;br /&gt;
=== Abbreviations ===&lt;br /&gt;
http://www.isdc.unige.ch/integral/support/glossary&lt;br /&gt;
&lt;br /&gt;
* '''DAL''' The Data Access Layer (DAL) is a software library used to manipulate (create, write, read and manage) scientific data. &lt;br /&gt;
* '''DOL''' The Data Object Location (DOL) specifies the location of a DAL object, both by the FITS file name and its extension. For instance, /isdc/dev/xxx.fits[2] is a DOL, while xxx.fits is simply the name of a FITS file. &lt;br /&gt;
&lt;br /&gt;
=== Known Issues ===&lt;br /&gt;
# In general: check first http://www.isdc.unige.ch/integral/support/faq for the error code you get&lt;br /&gt;
# The resulting spectra will not be strictly OGIP compliant, which e.g. ISIS might care about, but can be ignored.&lt;br /&gt;
&lt;br /&gt;
==== Errors mosaicing using custom DOLs ====&lt;br /&gt;
If you want to create a mosaic using DOL (Data Object Location) files, sometimes the building interrupts with errors like a Fortran Runtime error (http://www.isdc.unige.ch/integral/support/faq.cgi?SOFT-051) or errors like:&lt;br /&gt;
&lt;br /&gt;
  Using and copying first SCW &amp;gt;&amp;gt;/scratch1/beuchert/integral/scw_extr/obs/125400400010/scw/125400400010.001/swg_ibis.fits&lt;br /&gt;
  &amp;lt;&amp;lt;&lt;br /&gt;
  Log_0  :  100 elements opened.&lt;br /&gt;
  Log_0  :  100 elements attached.&lt;br /&gt;
  Error_1: Can not update the index.&lt;br /&gt;
&lt;br /&gt;
or&lt;br /&gt;
  Error_1: Can not close the element&lt;br /&gt;
or &lt;br /&gt;
  Error_2: DAL_READ_ERROR : error reading from FITS file&lt;br /&gt;
etc.&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
# Somehow corrupted scws? Collect sets of two scws and create Mosaics based on those. Like that it is easy to enclose corrupted scws.&lt;br /&gt;
# An error -2004 (DAL_FILE_NOT_ACCESSIBLE) often results because one of your groups is corrupted. Before restarting the analysis, make a ``dal_clean'', which should be able to do an automatic repair. If it does not work try a ``dal_verify'' to see what is corrupted. Or you can try to open your group (or child group) with fv and look for a file pointed by the group that does not exists. Most of the time removing the line with this wrong file in the group table is fixing your problem.&lt;br /&gt;
&lt;br /&gt;
The latter:&lt;br /&gt;
first create an observation group out of your dol-list of scws.&lt;br /&gt;
Creating observation groups is also the canonical way of extracting INTEGRAL/IBIS data.&lt;br /&gt;
Before doing that, the soft links as noted above have to be set in the directory.&lt;br /&gt;
Then:&lt;br /&gt;
  cd path/to/dir/with/softlinks/&lt;br /&gt;
  og_create idxSwg=dol.txt ogid=isgri_gc baseDir=&amp;quot;./&amp;quot; instrument=IBIS&lt;br /&gt;
  ls obs/isgri_gc/&lt;br /&gt;
Repair the observation group and included indices/links with &lt;br /&gt;
  dal_clean inDOL=&amp;quot;obs/isgri_gc/og_ibis.fits&amp;quot; chatty=&amp;quot;4&amp;quot; checkExt=&amp;quot;1&amp;quot;&lt;br /&gt;
Now INT_mosa_ibis should work again on the scws in dol.txt&lt;br /&gt;
&lt;br /&gt;
==== How to create mosaics (outdated) ====&lt;br /&gt;
&lt;br /&gt;
First make a list of scws you want to add to a mosaic, i.e., a &amp;quot;dol-file&amp;quot; dol.txt:&lt;br /&gt;
  /scratch1/beuchert/integral/scw_extr/obs/066200340010/scw/066200340010.001/swg_ibis.fits&lt;br /&gt;
  /scratch1/beuchert/integral/scw_extr/obs/066200350010/scw/066200350010.001/swg_ibis.fits&lt;br /&gt;
  /scratch1/beuchert/integral/scw_extr/obs/066200360010/scw/066200360010.001/swg_ibis.fits&lt;br /&gt;
Then prepare the directory where the mosaic shall be built in, i.e., set the env. variables to allow INT_mosa_ibis to find indices etc.:&lt;br /&gt;
  cd /some/path/&lt;br /&gt;
  ln -s /virgo/b/INTEGRAL/aux/&lt;br /&gt;
  ln -s /virgo/b/INTEGRAL/idx/&lt;br /&gt;
  ln -s /virgo/b/INTEGRAL/ic/&lt;br /&gt;
  ln -s /virgo/b/INTEGRAL/scw/&lt;br /&gt;
  ln -s /virgo/b/INTEGRAL/cat/&lt;br /&gt;
  mkdir /some/path/obs/&lt;br /&gt;
  &lt;br /&gt;
  INT_mosa_ibis --obsgrp=/path/to/all/extracted/scws/ --destin=/path/to/the/prepared/directory/obs/mosa_og/ --dol=&amp;quot;dol.txt&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== Non-OSA INTEGRAL extraction ===&lt;br /&gt;
&lt;br /&gt;
There are a few alternatives by now to using OSA+Remeis scripts:&lt;br /&gt;
* To run IBIS and JEMX analysis online there is MMODA at https://www.astro.unige.ch/mmoda/help/mmoda/integral-mission&lt;br /&gt;
* If you are interested in SPI data you can do this with the OSA installed here at Remeis, there are however much more reliable and stable pipelines available in form of either SPI-DAI or the SPI-pipeline at MPE organized by Tomas Stiegert. &lt;br /&gt;
&lt;br /&gt;
[[Category:Data Extraction]]&lt;/div&gt;</summary>
		<author><name>Thalhammer</name></author>
	</entry>
	<entry>
		<id>https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=PhD_hat_for_Ole&amp;diff=3275</id>
		<title>PhD hat for Ole</title>
		<link rel="alternate" type="text/html" href="https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=PhD_hat_for_Ole&amp;diff=3275"/>
		<updated>2024-02-05T17:24:51Z</updated>

		<summary type="html">&lt;p&gt;Thalhammer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Internal]]&lt;br /&gt;
&lt;br /&gt;
Date of defense: 20th of February 2024&lt;br /&gt;
&lt;br /&gt;
Thesis here: https://www.sternwarte.uni-erlangen.de/~koenig/Koenig_Dissertation.pdf&lt;br /&gt;
&lt;br /&gt;
== Science: ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Cyg X-1 NICER timing paper&lt;br /&gt;
** Model of Cyg X-1 with three Pauls(?) the Photon   (Philipp T ((Aafia)&amp;amp;(Martin)))&lt;br /&gt;
** Model of NICER as cheese grinder (above bowl of noodles) (Jona)&lt;br /&gt;
** Paul comic... &lt;br /&gt;
&lt;br /&gt;
  &lt;br /&gt;
* eROSITA NOVA paper&lt;br /&gt;
** eROSITA looking at WD and smoking (Christian)&lt;br /&gt;
*** Use kid paper model + Cotton &lt;br /&gt;
** Eye of Sauron on WD or eROSITA&lt;br /&gt;
** &amp;quot;Fitted by eye&amp;quot;? &lt;br /&gt;
  &lt;br /&gt;
==&amp;gt; Which of these is gonna be the center piece? --&amp;gt; Cyg   &lt;br /&gt;
Combine as one model&lt;br /&gt;
&lt;br /&gt;
  &lt;br /&gt;
* SIXTE Athena simulations &lt;br /&gt;
**Perseus Cluster with WFI&lt;br /&gt;
** As meme&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Should we try to make comics of Paul the X-ray photon to go around the hat?&lt;br /&gt;
&lt;br /&gt;
== Hobby: ==&lt;br /&gt;
* Climbing: Ole-figurine hanging on rope as a tassel, magnets (Aafia) &lt;br /&gt;
* Snowy climbing Mountain with  bouldering holds(Amy / Philipp 3D printing)&lt;br /&gt;
* Remeis Skiing: Digging for lost ski &lt;br /&gt;
* A mountain with one side cliff for climbing and another side for skiing (or above)&lt;br /&gt;
** Let him dig for skies in something...&lt;br /&gt;
&lt;br /&gt;
* Some references to observatory pool and barbecues&lt;br /&gt;
* Wind surfing on Pool? --&amp;gt; board &lt;br /&gt;
* Books: LOTR, ...?&lt;br /&gt;
* Motorbike: Key in Javier' box?&lt;br /&gt;
* Pub quiz &lt;br /&gt;
* Running: Marathon relay with MPE in Munich &amp;amp; Valencia &lt;br /&gt;
&lt;br /&gt;
== Others:  ==&lt;br /&gt;
* Guided tours (&amp;amp; also for kids), meteoroids with magnet, solar system model, ...&lt;br /&gt;
* Lab course: Azimuth experiment, theodolite model(Katya)  &lt;br /&gt;
* One of the first regulars at new ECAP office --&amp;gt; meme&lt;br /&gt;
&lt;br /&gt;
== Travels: ==&lt;br /&gt;
* Train model (Frederico) around the hat with pictures next stop Boston&lt;br /&gt;
** Some ICE paper models are here, could be printed to small scale: https://www.bahn-kids.de/bastelvorlagen-alle-ice&lt;br /&gt;
* Map with toothpicks &amp;amp; images &lt;br /&gt;
* Train ride to Spain&lt;br /&gt;
* Yosemite, Alps, Frankenjura, Caucasus --&amp;gt; pictures on rope&lt;br /&gt;
* Visit of Caltech&lt;br /&gt;
* Lots of talks after Nature paper --&amp;gt; calendar with talks (Philipp T)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Specific incidents: ==&lt;br /&gt;
* Living at Bundschuh house getting up early --&amp;gt; meme (Martin)&lt;br /&gt;
* NRTA minutes / Paper note / Tassel --&amp;gt; Steven  &lt;br /&gt;
&lt;br /&gt;
== Memes &amp;amp; Images: ==&lt;br /&gt;
* Alexey: He has a peaked cap from California with name &amp;quot;Mishka&amp;quot; written in russian letters (&amp;quot;Мишка&amp;quot;) on it, which also means &amp;quot;a small bear/ Bärchen&amp;quot; in russian. Could this be played out somehow?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Put images here: https://drive.google.com/drive/folders/1oVE_utvz_lmQm-qpHWHaqFpyqjmAS9DV?usp=sharing&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Try making it bio degradable&lt;/div&gt;</summary>
		<author><name>Thalhammer</name></author>
	</entry>
	<entry>
		<id>https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=PhD_hat_for_Ole&amp;diff=3274</id>
		<title>PhD hat for Ole</title>
		<link rel="alternate" type="text/html" href="https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=PhD_hat_for_Ole&amp;diff=3274"/>
		<updated>2024-02-05T17:24:04Z</updated>

		<summary type="html">&lt;p&gt;Thalhammer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Internal]]&lt;br /&gt;
&lt;br /&gt;
Date of defense: 20th of February 2024&lt;br /&gt;
&lt;br /&gt;
Thesis here: https://www.sternwarte.uni-erlangen.de/~koenig/Koenig_Dissertation.pdf&lt;br /&gt;
&lt;br /&gt;
== Science: ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Cyg X-1 NICER timing paper&lt;br /&gt;
** Model of Cyg X-1 with three Pauls(?) the Photon   (Philipp T ((Aafia)&amp;amp;(Martin)))&lt;br /&gt;
** Model of NICER as cheese grinder (above bowl of noodles) (Jona)&lt;br /&gt;
** Paul comic... &lt;br /&gt;
&lt;br /&gt;
  &lt;br /&gt;
* eROSITA NOVA paper&lt;br /&gt;
** eROSITA looking at WD and smoking (Christian)&lt;br /&gt;
*** Use kid paper model + Cotton &lt;br /&gt;
** Eye of Sauron on WD or eROSITA&lt;br /&gt;
** &amp;quot;Fitted by eye&amp;quot;? &lt;br /&gt;
  &lt;br /&gt;
==&amp;gt; Which of these is gonna be the center piece? --&amp;gt; Cyg   &lt;br /&gt;
Combine as one model&lt;br /&gt;
&lt;br /&gt;
  &lt;br /&gt;
* SIXTE Athena simulations &lt;br /&gt;
**Perseus Cluster with WFI&lt;br /&gt;
** As meme&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Should we try to make comics of Paul the X-ray photon to go around the hat?&lt;br /&gt;
&lt;br /&gt;
== Hobby: ==&lt;br /&gt;
* Climbing: Ole-figurine hanging on rope as a tassel, magnets (Aafia) &lt;br /&gt;
* Snowy climbing Mountain with  bouldering holds(Amy / Philipp 3D printing)&lt;br /&gt;
* Remeis Skiing: Digging for lost ski &lt;br /&gt;
* A mountain with one side cliff for climbing and another side for skiing (or above)&lt;br /&gt;
** Let him dig for skies in something...&lt;br /&gt;
&lt;br /&gt;
* Some references to observatory pool and barbecues&lt;br /&gt;
* Wind surfing on Pool? --&amp;gt; board &lt;br /&gt;
* Books: LOTR, ...?&lt;br /&gt;
* Motorbike: Key in Javier' box?&lt;br /&gt;
* Pub quiz &lt;br /&gt;
* Running: Marathon relay with MPE in Munich &amp;amp; Valencia &lt;br /&gt;
&lt;br /&gt;
== Others:  ==&lt;br /&gt;
* Guided tours (&amp;amp; also for kids), meteoroids with magnet, solar system model, ...&lt;br /&gt;
* Lab course: Azimuth experiment, theodolite model(Katya)  &lt;br /&gt;
* One of the first regulars at new ECAP office --&amp;gt; meme&lt;br /&gt;
&lt;br /&gt;
=== Travels: ===&lt;br /&gt;
* Train model (Frederico) around the hat with pictures next stop Boston&lt;br /&gt;
** Some ICE paper models are here, could be printed to small scale: https://www.bahn-kids.de/bastelvorlagen-alle-ice&lt;br /&gt;
* Map with toothpicks &amp;amp; images &lt;br /&gt;
* Train ride to Spain&lt;br /&gt;
* Yosemite, Alps, Frankenjura, Caucasus --&amp;gt; pictures on rope&lt;br /&gt;
* Visit of Caltech&lt;br /&gt;
* Lots of talks after Nature paper --&amp;gt; calendar with talks (Philipp T)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Specific incidents: ===&lt;br /&gt;
* Living at Bundschuh house getting up early --&amp;gt; meme (Martin)&lt;br /&gt;
* NRTA minutes / Paper note / Tassel --&amp;gt; Steven  &lt;br /&gt;
&lt;br /&gt;
=== Memes &amp;amp; Images: ===&lt;br /&gt;
* Alexey: He has a peaked cap from California with name &amp;quot;Mishka&amp;quot; written in russian letters (&amp;quot;Мишка&amp;quot;) on it, which also means &amp;quot;a small bear/ Bärchen&amp;quot; in russian. Could this be played out somehow?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Put images here: https://drive.google.com/drive/folders/1oVE_utvz_lmQm-qpHWHaqFpyqjmAS9DV?usp=sharing&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Try making it bio degradable&lt;/div&gt;</summary>
		<author><name>Thalhammer</name></author>
	</entry>
	<entry>
		<id>https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=PhD_hat_for_Ole&amp;diff=3273</id>
		<title>PhD hat for Ole</title>
		<link rel="alternate" type="text/html" href="https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=PhD_hat_for_Ole&amp;diff=3273"/>
		<updated>2024-02-05T17:23:18Z</updated>

		<summary type="html">&lt;p&gt;Thalhammer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Internal]]&lt;br /&gt;
&lt;br /&gt;
Date of defense: 20th of February 2024&lt;br /&gt;
&lt;br /&gt;
Thesis here: https://www.sternwarte.uni-erlangen.de/~koenig/Koenig_Dissertation.pdf&lt;br /&gt;
&lt;br /&gt;
== Science: ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Cyg X-1 NICER timing paper&lt;br /&gt;
** Model of Cyg X-1 with three Pauls(?) the Photon   (Philipp T ((Aafia)&amp;amp;(Martin)))&lt;br /&gt;
** Model of NICER as cheese grinder (above bowl of noodles) (Jona)&lt;br /&gt;
** Paul comic... &lt;br /&gt;
&lt;br /&gt;
  &lt;br /&gt;
* eROSITA NOVA paper&lt;br /&gt;
** eROSITA looking at WD and smoking (Christian)&lt;br /&gt;
*** Use kid paper model + Cotton &lt;br /&gt;
** Eye of Sauron on WD or eROSITA&lt;br /&gt;
** &amp;quot;Fitted by eye&amp;quot;? &lt;br /&gt;
  &lt;br /&gt;
==&amp;gt; Which of these is gonna be the center piece? --&amp;gt; Cyg   &lt;br /&gt;
Combine as one model&lt;br /&gt;
&lt;br /&gt;
  &lt;br /&gt;
* SIXTE Athena simulations &lt;br /&gt;
**Perseus Cluster with WFI&lt;br /&gt;
** As meme&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Should we try to make comics of Paul the X-ray photon to go around the hat?&lt;br /&gt;
&lt;br /&gt;
== Hobby: ==&lt;br /&gt;
* Climbing: Ole-figurine hanging on rope as a tassel, magnets (Aafia) &lt;br /&gt;
* Snowy climbing Mountain with  bouldering holds(Amy / Philipp 3D printing)&lt;br /&gt;
* Remeis Skiing: Digging for lost ski &lt;br /&gt;
* A mountain with one side cliff for climbing and another side for skiing (or above)&lt;br /&gt;
** Let him dig for skies in something...&lt;br /&gt;
&lt;br /&gt;
* Some references to observatory pool and barbecues&lt;br /&gt;
* Wind surfing on Pool? --&amp;gt; board &lt;br /&gt;
* Books: LOTR, ...?&lt;br /&gt;
* Motorbike: Key in Javier' box?&lt;br /&gt;
* Pub quiz &lt;br /&gt;
* Running: Marathon relay with MPE in Munich &amp;amp; Valencia &lt;br /&gt;
&lt;br /&gt;
== Others:  ==&lt;br /&gt;
* Guided tours (&amp;amp; also for kids), meteoroids with magnet, solar system model, ...&lt;br /&gt;
* Lab course: Azimuth experiment, theodolite model(Katya)  &lt;br /&gt;
* One of the first regulars at new ECAP office --&amp;gt; meme&lt;br /&gt;
&lt;br /&gt;
=== Travels: ===&lt;br /&gt;
* Train model (Frederico) around the hat with pictures next stop Boston&lt;br /&gt;
** Some ICE paper models are here, could be printed to small scale: https://www.bahn-kids.de/bastelvorlagen-alle-ice&lt;br /&gt;
* Map with toothpicks &amp;amp; images &lt;br /&gt;
* Train ride to Spain&lt;br /&gt;
* Yosemite, Alps, Frankenjura, Caucasus --&amp;gt; pictures on rope&lt;br /&gt;
* Visit of Caltech&lt;br /&gt;
* Lots of talks after Nature paper --&amp;gt; calendar with talks (Philipp T)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Specific incidents: ===&lt;br /&gt;
* Living at Bundschuh house getting up early --&amp;gt; meme (Martin)&lt;br /&gt;
* NRTA minutes / Paper note / Tassel --&amp;gt; Steven  &lt;br /&gt;
&lt;br /&gt;
=== Memes &amp;amp; Images: ===&lt;br /&gt;
* Alexey: He has a peaked cap from California with name &amp;quot;Mishka&amp;quot; written in russian letters (&amp;quot;Мишка&amp;quot;) on it, which also means &amp;quot;a small bear/ Bärchen&amp;quot; in russian. &lt;br /&gt;
  Could this be played out somehow?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Put images here: https://drive.google.com/drive/folders/1oVE_utvz_lmQm-qpHWHaqFpyqjmAS9DV?usp=sharing&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Try making it bio degradable&lt;/div&gt;</summary>
		<author><name>Thalhammer</name></author>
	</entry>
	<entry>
		<id>https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=PhD_hat_for_Ole&amp;diff=3264</id>
		<title>PhD hat for Ole</title>
		<link rel="alternate" type="text/html" href="https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=PhD_hat_for_Ole&amp;diff=3264"/>
		<updated>2024-01-31T15:14:18Z</updated>

		<summary type="html">&lt;p&gt;Thalhammer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Internal]]&lt;br /&gt;
&lt;br /&gt;
Date of defense: 20th of February 2024&lt;br /&gt;
&lt;br /&gt;
Thesis here: https://www.sternwarte.uni-erlangen.de/~koenig/Koenig_Dissertation.pdf&lt;br /&gt;
&lt;br /&gt;
== Science: ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Cyg X-1 NICER timing paper&lt;br /&gt;
** Model of Cyg X-1 with three Pauls(?) the Photon   (Philipp T ((Aafia)&amp;amp;(Martin)))&lt;br /&gt;
** Model of NICER as cheese grinder (above bowl of noodles) (Jona)&lt;br /&gt;
** Paul comic... &lt;br /&gt;
&lt;br /&gt;
  &lt;br /&gt;
* eROSITA NOVA paper&lt;br /&gt;
** eROSITA looking at WD and smoking (Christian)&lt;br /&gt;
*** Use kid paper model + Cotton &lt;br /&gt;
** Eye of Sauron on WD or eROSITA&lt;br /&gt;
** &amp;quot;Fitted by eye&amp;quot;? &lt;br /&gt;
  &lt;br /&gt;
==&amp;gt; Which of these is gonna be the center piece? --&amp;gt; Cyg   &lt;br /&gt;
Combine as one model&lt;br /&gt;
&lt;br /&gt;
  &lt;br /&gt;
* SIXTE Athena simulations &lt;br /&gt;
**Perseus Cluster with WFI&lt;br /&gt;
** As meme&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Should we try to make comics of Paul the X-ray photon to go around the hat?&lt;br /&gt;
&lt;br /&gt;
== Hobby: ==&lt;br /&gt;
* Climbing: Ole-figurine hanging on rope as a tassel, magnets (Aafia) &lt;br /&gt;
* Snowy climbing Mountain with  bouldering holds(Amy / Philipp 3D printing)&lt;br /&gt;
* Remeis Skiing: Digging for lost ski &lt;br /&gt;
* A mountain with one side cliff for climbing and another side for skiing (or above)&lt;br /&gt;
** Let him dig for skies in something...&lt;br /&gt;
&lt;br /&gt;
* Some references to observatory pool and barbecues&lt;br /&gt;
* Wind surfing on Pool? --&amp;gt; board &lt;br /&gt;
* Books: LOTR, ...?&lt;br /&gt;
* Motorbike: Key in Javier' box?&lt;br /&gt;
* Pub quiz &lt;br /&gt;
* Running: Marathon relay with MPE in Munich &amp;amp; Valencia &lt;br /&gt;
&lt;br /&gt;
== Others:  ==&lt;br /&gt;
* Guided tours (&amp;amp; also for kids), meteoroids with magnet, solar system model, ...&lt;br /&gt;
* Lab course: Azimuth experiment, theodolite model(Katya)  &lt;br /&gt;
* One of the first regulars at new ECAP office --&amp;gt; meme&lt;br /&gt;
&lt;br /&gt;
=== Travels: ===&lt;br /&gt;
* Train model (Frederico) around the hat with pictures next stop Boston  &lt;br /&gt;
* Map with toothpicks &amp;amp; images &lt;br /&gt;
* Train ride to Spain&lt;br /&gt;
* Yosemite, Alps, Frankenjura, Caucasus --&amp;gt; pictures on rope&lt;br /&gt;
* Visit of Caltech&lt;br /&gt;
* Lots of talks after Nature paper --&amp;gt; calendar with talks (Philipp T)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Specific incidents: ===&lt;br /&gt;
* Living at Bundschuh house getting up early --&amp;gt; meme (Martin)&lt;br /&gt;
* NRTA minutes / Paper note / Tassel --&amp;gt; Steven  &lt;br /&gt;
&lt;br /&gt;
=== Memes &amp;amp; Images: ===&lt;br /&gt;
* Put images here: *FAU box or something*&lt;br /&gt;
* Alexey: He has a peaked cap from California with name &amp;quot;Mishka&amp;quot; written in russian letters (&amp;quot;Мишка&amp;quot;) on it, which also means &amp;quot;a small bear/ Bärchen&amp;quot; in russian. Could this be played out somehow?&lt;br /&gt;
&lt;br /&gt;
* Try making it bio degradable&lt;/div&gt;</summary>
		<author><name>Thalhammer</name></author>
	</entry>
	<entry>
		<id>https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=PhD_hat_for_Ole&amp;diff=3255</id>
		<title>PhD hat for Ole</title>
		<link rel="alternate" type="text/html" href="https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=PhD_hat_for_Ole&amp;diff=3255"/>
		<updated>2024-01-29T13:22:01Z</updated>

		<summary type="html">&lt;p&gt;Thalhammer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Internal]]&lt;br /&gt;
&lt;br /&gt;
Date of defense: 20th of February 2024&lt;br /&gt;
&lt;br /&gt;
Thesis here: https://www.sternwarte.uni-erlangen.de/~koenig/Koenig_Dissertation.pdf&lt;br /&gt;
&lt;br /&gt;
== Science: ==&lt;br /&gt;
* Cyg X-1 NICER timing paper&lt;br /&gt;
** Model of Cyg X-1 with Photon trajectories&lt;br /&gt;
** Model of NICER as cheese grinder&lt;br /&gt;
  &lt;br /&gt;
* eROSITA NOVA paper&lt;br /&gt;
** Eye of Sauron &lt;br /&gt;
** Evil smile plot  &lt;br /&gt;
  &lt;br /&gt;
==&amp;gt; Which of these is gonna be the center piece?   &lt;br /&gt;
  &lt;br /&gt;
* SIXTE Athena simulations &lt;br /&gt;
**Perseus Cluster with WFI&lt;br /&gt;
&lt;br /&gt;
* Should we try to make comics of Paul the X-ray photon to go around the hat?&lt;br /&gt;
&lt;br /&gt;
== Hobby: ==&lt;br /&gt;
* Climbing: Ole-figurine hanging on rope as a tassel, also bouldering holds around the hat&lt;br /&gt;
* Remeis Skiing: Digging for lost ski --&amp;gt; Maybe he can find the lost ski on one of his astrophysical objects?&lt;br /&gt;
* A mountain with one side cliff for climbing and another side for skiing (or above)&lt;br /&gt;
* Some references to observatory pool and barbecues&lt;br /&gt;
* Wind surfing on Crete?&lt;br /&gt;
* Books: LOTR, ...?&lt;br /&gt;
* Motorbike&lt;br /&gt;
* Running: Marathon relay with MPE in Munich&lt;br /&gt;
&lt;br /&gt;
== Others:  ==&lt;br /&gt;
* Guided tours (&amp;amp; also for kids)&lt;br /&gt;
* Lab course: Azimuth experiment&lt;br /&gt;
&lt;br /&gt;
=== Travels: ===&lt;br /&gt;
* Train to ESAC Madrid&lt;br /&gt;
* Yosemite, Alps, Frankenjura, Caucasus&lt;br /&gt;
* Visit of Caltech&lt;br /&gt;
* Lots of talks after Nature paper&lt;br /&gt;
&lt;br /&gt;
=== Specific incidents: ===&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=== Memes &amp;amp; Images: ===&lt;br /&gt;
* ...&lt;br /&gt;
Alexey: He has a peaked cap from California with name &amp;quot;Mishka&amp;quot; written in russian letters (&amp;quot;Мишка&amp;quot;) on it, which also means &amp;quot;a small bear/ Bärchen&amp;quot; in russian. Could this be played out somehow?&lt;/div&gt;</summary>
		<author><name>Thalhammer</name></author>
	</entry>
	<entry>
		<id>https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Guided_Tours_and_Public_Outreach&amp;diff=3245</id>
		<title>Guided Tours and Public Outreach</title>
		<link rel="alternate" type="text/html" href="https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Guided_Tours_and_Public_Outreach&amp;diff=3245"/>
		<updated>2024-01-23T14:30:44Z</updated>

		<summary type="html">&lt;p&gt;Thalhammer: /* Tours looking for a guide */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;On this pages you can find all information needed to guide a tour through our observatory for public people.&lt;br /&gt;
&lt;br /&gt;
At least, that's the aim of this page, so please add information if you think its missing!&lt;br /&gt;
&lt;br /&gt;
= Platform =&lt;br /&gt;
&lt;br /&gt;
'''The following is important:'''&amp;lt;br&amp;gt;&lt;br /&gt;
Tours are officially '''organized''' by the [http://foerderverein-sternwarte-bamberg.de Foerderverein of the observatory], but '''operated''' by the observatory staff to be insured through the university!&lt;br /&gt;
&lt;br /&gt;
The main platform for the general public is&amp;lt;br&amp;gt;[http://foerderverein-sternwarte-bamberg.de/fuehrungen http://foerderverein-sternwarte-bamberg.de/fuehrungen].&lt;br /&gt;
&lt;br /&gt;
Here, tours can be ordered in two different ways:&lt;br /&gt;
* single persons and smaller groups can directly book public and regular guided tours via our webform at&amp;lt;br&amp;gt;https://www.sternwarte.uni-erlangen.de/guided-tours/&lt;br /&gt;
* larger groups may directly ask for a tour at a separate date either by email to&amp;lt;br&amp;gt;[mailto:fuehrungen@foerderverein-sternwarte-bamberg.de fuehrungen@foerderverein-sternwarte-bamberg.de]&amp;lt;br&amp;gt;or by phone. The email address is a forwarding to a certain person of the mailing list (see below).&lt;br /&gt;
&lt;br /&gt;
The source code of the webform for booking a public tour can be found in the GIT repository at&amp;lt;br&amp;gt;&lt;br /&gt;
[https://www.sternwarte.uni-erlangen.de/gitlab/webmaster/guided-tours https://www.sternwarte.uni-erlangen.de/gitlab/webmaster/guided-tours].&amp;lt;br&amp;gt;&lt;br /&gt;
All pushes to the master branch are automatically deployed at the official URL above!&lt;br /&gt;
&lt;br /&gt;
== Mailing List / Current &amp;quot;staff&amp;quot; ==&lt;br /&gt;
&lt;br /&gt;
All people interested in giving guided tours are member of the mailing list&amp;lt;br&amp;gt;&lt;br /&gt;
[mailto:astro-fuehrungen@lists.fau.de astro-fuehrungen@lists.fau.de]&amp;lt;br&amp;gt;&lt;br /&gt;
Please '''do not share''' this address with anybody outside of the observatory!&lt;br /&gt;
If you're not on the list but interested in giving tours, just ask Max to add you :-)&lt;br /&gt;
&lt;br /&gt;
New tours without a guide yet are usually announced via this list. See [[Mailing lists]] for the list administrator.&lt;br /&gt;
&lt;br /&gt;
In charge of organization:&lt;br /&gt;
* Katrin&lt;br /&gt;
&lt;br /&gt;
Currently, the following people give tours on a regular basis:&lt;br /&gt;
* Steven&lt;br /&gt;
* Christian&lt;br /&gt;
* Aafia&lt;br /&gt;
* Amy&lt;br /&gt;
* Philipp T.&lt;br /&gt;
* Alexey&lt;br /&gt;
* Katharina&lt;br /&gt;
&lt;br /&gt;
= Tip policy =&lt;br /&gt;
&lt;br /&gt;
The group is informed beforehand about the rule of tip. &lt;br /&gt;
For the guides the following applies for the money you get during the tour:&lt;br /&gt;
During the week (Monday till Friday) the factor for the donation, which goes directly to the Foerderverein, is 1/3 (33%), the rest (2/3) is your personal tip.&lt;br /&gt;
For weekend tours (Saturday, Sunday) the factor for the donation is 1/4 (25%).&lt;br /&gt;
&lt;br /&gt;
Make sure to hand in the donations immediately after your tour. Put the money on Ingos desk with a note stating which tour you gave, how much you received and how many people were there.&lt;br /&gt;
&lt;br /&gt;
= Offering Tours =&lt;br /&gt;
&lt;br /&gt;
At some point you're perhaps asked to give a tour or if it is possible to have one on a specific date. The latter might occur if Edith is out of her office and her telephone is redirected. In those cases you should know ''and'' check following things:&lt;br /&gt;
* '''Who is asking''' for a tour? &amp;lt;br&amp;gt; If you're on the phone ask for a name and write down the phone number where the person can be called!&lt;br /&gt;
* The '''number of people should be between 15 and 25'''. &amp;lt;br&amp;gt; Of course, the boundary conditions depend on the person guiding the tour. In a case of doubt, ask the guide or, if none is found yet, you simply can't promise that there will be a tour! In that case you may offer to look for a guide giving the tour anyway (and call the person back), but again don't make any promises! A list of people offering tours can be found below.&lt;br /&gt;
* What is the '''average age of the persons attending''' the tour? &amp;lt;br&amp;gt; That's an important point since the content of a tour differs between children and adults, of course. Furthermore some guides have favorite age groups!&lt;br /&gt;
* Carefully check the '''date and time of the tour'''!&lt;br /&gt;
** It's most likely to find a guide if the weekday of a tour is '''between Monday and Thursday'''. Friday might work if it is before noon, otherwise people might be on the way into the weekend. In all other cases you may offer to look for a guide giving the tour anyway (see the point about the group size above).&lt;br /&gt;
** Make sure that there is '''no tour scheduled already'''! For that look into our online calendar (the link can be found below) and on the whiteboard in the copying machine office.&lt;br /&gt;
** Related to the last point ensure that there is '''no lab course''' running at the date! The lab course is also marked in our online calendar.&lt;br /&gt;
** Usually, a tour will take '''about 1.5 to 2 hours'''.&lt;br /&gt;
* Clarify the '''costs for a tour''' beforehand!! &amp;lt;br&amp;gt; Unfortunately, we are '''not allowed to ask for money''' for giving a tour! The only way for getting money is to tell the people that they are welcomed to '''donate money to the [http://foerderverein-sternwarte-bamberg.de/| Foerderverein der Sternwarte]'''. In nearly every case the people or the one asking for a tour will pay something. A rule of thumb is that '''every person donates 3 EUR''' (for children 2 EUR are alright as well). &amp;lt;br&amp;gt; __For your ears only__: 1 EUR per attended person of the donated money will be transferred to the Förderverein (the current treasurer is Ingo, leave the money on his desk with a short note stating the number of people and what kind of a tour this was), the rest is for the guide! There will be a contact phone-number available, best would be to call the contacts-person before the tour to tell them these infos...&lt;br /&gt;
* '''Observing with our telescopes''' is possible, of course, but only in case of '''night and cloudless weather'''! No kidding, some people are not aware of these facts... &amp;lt;br&amp;gt; (&amp;quot;The day is too bright to see stars.&amp;quot;, &amp;quot;I'm sorry, we can't look trough the clouds.&amp;quot;, &amp;quot;The weather forecast is too uncertain, we can't promise.&amp;quot;) Please check if someone else has already signed in for one of the telescopes on the day/night of the guided tour!  '''IMPORTANT:'''  Be aware that you are not allowed to operate the telescopes on you own, there ALWAYS has to be at least a second person around. To assure that, you either have to have a second person from the observatory present (at least in the main building) or you have to set up AND disassemble everything while the people from the tour are there. Otherwise no observations are allowed to take place!&lt;br /&gt;
* If all the above points are clarified '''mark the tour''' &amp;lt;br&amp;gt; in our [https://www.sternwarte.uni-erlangen.de/calendar/ online calendar] and the whiteboard in the copying machine office. You have to be at a machine at the observatory to have access to the online calendar (to be more precisely: you're machine has to have an internal IP-address). &amp;lt;br&amp;gt; The entry into the online calendar, besides the date and time, should include &amp;quot;for whom is the tour and the group size, contact person and phone number, name of the guide giving the tour&amp;quot;. &amp;lt;br&amp;gt; The whiteboard template is as follows: &amp;quot;date, for whom is the tour, time, guide&amp;quot;&lt;br /&gt;
&lt;br /&gt;
= Giving a tour =&lt;br /&gt;
&lt;br /&gt;
Each tour has several stations, where you can show things or talk to the people. Useful information and experiences about that is listed below. It might be helpful as well to read the article about [[intern:popular_science:start|popular science]] in case you want or have to (if somebody asks) explain scientific aspects.&lt;br /&gt;
&lt;br /&gt;
== Preparation ==&lt;br /&gt;
&lt;br /&gt;
'''Before the tour'''&lt;br /&gt;
* Shut the doors of all offices in the main building (at least on the ground level) for several reasons: people are not allowed to walk in there and some of us are still working there during tours!&lt;br /&gt;
* Remove the northern hemisphere from the model of the inner solar system located in the entrance hall (you may put it into the Knigge room)&lt;br /&gt;
* Switch the lights on you need:&lt;br /&gt;
** entrance hall&lt;br /&gt;
** meteorite showcase (switch is on the right next to it)&lt;br /&gt;
** hallway to the meridian building; here are multiple switches&lt;br /&gt;
*** main light: right next to the door of the hallway or the backdoor of the main building (labeled &amp;quot;Meridian&amp;quot;)&lt;br /&gt;
*** info panels: on the opposite wall to the door next to the blue cupboard&lt;br /&gt;
*** showcases and Blinkkomparator: in the cutout box up the few stairs on the right wall close to the library, labeled &amp;quot;Linke Steckdosen&amp;quot;&lt;br /&gt;
* In case of observations&lt;br /&gt;
** make sure that you are '''never''' alone in the domes! There always have to be at least two people present.&lt;br /&gt;
** carry the needed oculars into the domes (for observations with the naked eye, the 40cm telescope is strongly recommended)&lt;br /&gt;
** do __not__ open the domes (first, it might start raining while nobody is there, and it's more fun for you to let the people do it)&lt;br /&gt;
** do __not__ remove the dust covers of the telescopes (wait until the dome has been opened)&lt;br /&gt;
** read the [[remeis:start|guide how to operate the telescopes and mountings]]&lt;br /&gt;
** after observing: shut down the telescope mounting, put the dust covers back on and close the domes&lt;br /&gt;
* In case of showing nice pictures&lt;br /&gt;
** make sure enough chairs are available&lt;br /&gt;
** switch on the beamer in the library, log into the machine and start your presentation, picture-viewer, ...&lt;br /&gt;
 &lt;br /&gt;
'''After the tour'''&lt;br /&gt;
* Switch the lights off&lt;br /&gt;
* Logout of the used machines and switch the beamer off&lt;br /&gt;
* Put on the dust covers of the telescopes in the hallway&lt;br /&gt;
* Protect the photo plates on the Blinkkomparator from getting dusty&lt;br /&gt;
* '''Move the entry from the whiteboard''' in the copying machine office '''to the list attached to the pin-board''' next to it&lt;br /&gt;
&lt;br /&gt;
== Material and Presentations ==&lt;br /&gt;
*Collected information valuable for guided tours: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours'' and ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/guidedtour.pdf''&lt;br /&gt;
&lt;br /&gt;
*A merger of (picture/video) presentations given at guided tours: &amp;lt;br&amp;gt; ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/guidedtour.odp'' &lt;br /&gt;
&lt;br /&gt;
*and according videos in  &amp;lt;br&amp;gt; ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/videos/''&lt;br /&gt;
&lt;br /&gt;
*Research and activities at Remeis from the radio to the gamma-rays (Tobi Beuchert): &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Andrea_tour_material/observations_allwavelength_remeisresearch_beuchert.pdf''&lt;br /&gt;
&lt;br /&gt;
*A presentation showing the astrophotography done at the observatory: &amp;lt;br&amp;gt; ''/data/media/slideshow_astrophotographie/optische_Quellen.pdf''&lt;br /&gt;
&lt;br /&gt;
*A video tour with Joern: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Joerns_example_tour''&lt;br /&gt;
&lt;br /&gt;
*A video tour with Uli (only hallway): &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Ulis_example_tour_hall_2019''&lt;br /&gt;
&lt;br /&gt;
*A complete tour by Sebastian Müller: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Sebastians_example_tour''&lt;br /&gt;
&lt;br /&gt;
*Presentations for tours by Andrea Gokus: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Andrea_tour_material'' &amp;lt;br&amp;gt; Contains presentations about the solar system (solar_system.pdf), neutrinos (neutrino_talk.pdf), overview of different objet types (impressions_universe.pdf)&lt;br /&gt;
&lt;br /&gt;
*Andreas tour notes: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Andrea_tour_material/Sternwarten_Fuehrungsnotizen.pdf''&lt;br /&gt;
&lt;br /&gt;
*Amys tour notes: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Guided_Tour_Information_Amy.pdf''&lt;br /&gt;
&lt;br /&gt;
*Tobis tour notes: &amp;lt;br&amp;gt; ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/guidedtour.pdf''&lt;br /&gt;
&lt;br /&gt;
*Information on clocks: &amp;lt;br&amp;gt; ''/data/media/history/2009-01_KlassikUhren_Poehlmann_Max_Ort.pdf''&lt;br /&gt;
&lt;br /&gt;
*Information on history of the observatory and the collection: &amp;lt;br&amp;gt; ''/data/media/history/AstronomischeSammlung.pdf''&lt;br /&gt;
&lt;br /&gt;
*History of the observatory (Litten): &amp;lt;br&amp;gt; ''/data/media/history/Litten-1.pdf'' &amp;lt;br&amp;gt; ''/data/media/history/Litten-2.pdf''&lt;br /&gt;
&lt;br /&gt;
*Last will of Dr. Karl Remeis: &amp;lt;br&amp;gt; ''/data/media/history/Testament_Karl_Remeis.pdf''&lt;br /&gt;
&lt;br /&gt;
*Die Remeis-Sternwarte zu Bamberg 1889-1939, E. Zinner: &amp;lt;br&amp;gt; [https://articles.adsabs.harvard.edu/cgi-bin/nph-iarticle_query?1939VeBam...4....1Z&amp;amp;amp;data_type=PDF_HIGH&amp;amp;amp;whole_paper=YES&amp;amp;amp;type=PRINTER&amp;amp;amp;filetype=.pdf ADS]&lt;br /&gt;
&lt;br /&gt;
== Picture presentation ==&lt;br /&gt;
&lt;br /&gt;
There are different modes for the beamer (e.g. presentation, videos, graphics etc.) which result in a different appearance of the images. Make sure to select a presentation mode in which the pictures appear in an appropriate brightness on the screen. (I think &amp;quot;graphics&amp;quot; was a good one).&lt;br /&gt;
&lt;br /&gt;
== Telescopes in the domes ==&lt;br /&gt;
It's nice to show the main mirror to the people so that they can see themselves. To do so, just turn down the telescope in declination. This is only possible for the 40cm as the 50cm-Mount has a mechanical stop.&lt;br /&gt;
&lt;br /&gt;
Sometimes people want to know what we do with the tiny, little telescopes attached on the side of the big ones. Those are guiding-scopes. You can attach a camera to them and let it take pictures of one star. If the star moves (what it shouldn't do) a correction signal is sent to the mount to compensate the movement of the star. Stars can &amp;quot;move&amp;quot; in an image for example due to impreciseness of the mount. &lt;br /&gt;
&lt;br /&gt;
The (dusty) plate in front of the 40cm mirror is called &amp;quot;Schmid-Platte&amp;quot;. It is used to improve the imaging of the telescope and to correct several errors of the mirrors like coma and field-curvature. As it is very sensitive to scratching, it won't be cleaned and left dusty. But the dust has hardly any effect on the images as it lays far outside of the focusplane. The optical design is similar to a Ritchey-Chrétien type regarding the capability, but has a spherical main mirror, an aspherical secondary mirror and a lens-corrector (=Schmidt-plate). The price of the telescope and the mount is roughly about 25.000€ altogether.&lt;br /&gt;
&lt;br /&gt;
The 50cm doesn't have a Schmid-Platte but a corrector (lenses) placed in the OAZ. It has an elliptical main mirror and a spherical secondary mirror (Corrected Dall Kirkham). The price of the telescope and the mount is roughly about 65.000€. The secondary mirror is, compared to the size of the main mirror, significantly larger than the 40cm-sec. mirror. This results in a better luminosity an a larger, flat-field which is important for taking images. We can achieve tracking accuracies of about 10min without guiding.&lt;br /&gt;
&lt;br /&gt;
== Monthly public tours ==&lt;br /&gt;
NOTE: even if there is already someone listed for a tour, please enter you availability&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
!! UPDATE: for now no public tours will be offered, so you can ignore this table for now  !!&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Date &lt;br /&gt;
! Language&lt;br /&gt;
! Time&lt;br /&gt;
! Type&lt;br /&gt;
! Available Guides&lt;br /&gt;
! Backup&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2024/01/30&lt;br /&gt;
| German&lt;br /&gt;
| 6 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| Philipp&lt;br /&gt;
| -&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2024/02/06&lt;br /&gt;
| English&lt;br /&gt;
| 6 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| Federico&lt;br /&gt;
| -&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2024/02/13&lt;br /&gt;
| German&lt;br /&gt;
| 6 pm&lt;br /&gt;
| Tour for children&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2024/02/27&lt;br /&gt;
| German&lt;br /&gt;
| 6 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Tours looking for a guide ==&lt;br /&gt;
ATTENTION: tours are not sorted by the date of the tour, but the time when they were requested&lt;br /&gt;
&lt;br /&gt;
NOTE: please enter you availability even if there is already another name listed.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Date &lt;br /&gt;
! Language&lt;br /&gt;
! Time&lt;br /&gt;
! Organizer &lt;br /&gt;
! Additional information &lt;br /&gt;
! # People&lt;br /&gt;
! Observing&lt;br /&gt;
! Available Guides&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| Monday, Wednesday or Thursday&lt;br /&gt;
| German&lt;br /&gt;
| evening&lt;br /&gt;
| Schneider&lt;br /&gt;
| three kids age 6,9,14 (one autistic and interested in stars)&lt;br /&gt;
| 5 people &lt;br /&gt;
| yes&lt;br /&gt;
| &lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2024/02/07&lt;br /&gt;
| German&lt;br /&gt;
| evening&lt;br /&gt;
| NEO Labs&lt;br /&gt;
| kids age 6 to 9&lt;br /&gt;
| max 15 people (kids with supervisors)&lt;br /&gt;
| yes&lt;br /&gt;
| &lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2024/03/02&lt;br /&gt;
| German&lt;br /&gt;
| evening&lt;br /&gt;
| Frau Kiefer&lt;br /&gt;
| only adults&lt;br /&gt;
| 4 - 10 people&lt;br /&gt;
| yes&lt;br /&gt;
| &lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2024/02/23&lt;br /&gt;
| German&lt;br /&gt;
| starting 7pm (19 Uhr)&lt;br /&gt;
| Altieri&lt;br /&gt;
| &lt;br /&gt;
| ~ 10 people (only adults)&lt;br /&gt;
| yes&lt;br /&gt;
| Philipp&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Observing ==&lt;br /&gt;
&lt;br /&gt;
[[Category:Internal]]&lt;/div&gt;</summary>
		<author><name>Thalhammer</name></author>
	</entry>
	<entry>
		<id>https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=PhD_hat_for_Ole&amp;diff=3238</id>
		<title>PhD hat for Ole</title>
		<link rel="alternate" type="text/html" href="https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=PhD_hat_for_Ole&amp;diff=3238"/>
		<updated>2024-01-22T13:56:19Z</updated>

		<summary type="html">&lt;p&gt;Thalhammer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Internal]]&lt;br /&gt;
&lt;br /&gt;
Date of defense: 20th of February 2024&lt;br /&gt;
&lt;br /&gt;
Thesis here: https://www.sternwarte.uni-erlangen.de/~koenig/Koenig_Dissertation.pdf&lt;br /&gt;
&lt;br /&gt;
== Science: ==&lt;br /&gt;
* Cyg X-1 NICER timing paper&lt;br /&gt;
** Model of Cyg X-1 with Photon trajectories&lt;br /&gt;
** Model of NICER as cheese grinder&lt;br /&gt;
  &lt;br /&gt;
* eROSITA NOVA paper&lt;br /&gt;
** Eye of Sauron &lt;br /&gt;
** Evil smile plot  &lt;br /&gt;
  &lt;br /&gt;
==&amp;gt; Which of these is gonna be the center piece?   &lt;br /&gt;
  &lt;br /&gt;
* SIXTE Athena simulations &lt;br /&gt;
**Perseus Cluster with WFI &lt;br /&gt;
&lt;br /&gt;
== Hobby: ==&lt;br /&gt;
* Climbing: Ole-figurine hanging on rope as a tassel &lt;br /&gt;
* Remeis Skiing: Digging for lost ski &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Others:  ==&lt;br /&gt;
* Guided tours (&amp;amp; also for kids)&lt;br /&gt;
* Lab course: Azimuth experiment&lt;br /&gt;
&lt;br /&gt;
=== Travels: ===&lt;br /&gt;
* Train to ESAC Madrid&lt;br /&gt;
* Yosemite, Alps, Frankenjura&lt;br /&gt;
* Visit of CAltech&lt;br /&gt;
* Lots of talks after Nature paper&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Specific incidences: ===&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=== Memes &amp;amp; Images: ===&lt;br /&gt;
* ...&lt;/div&gt;</summary>
		<author><name>Thalhammer</name></author>
	</entry>
	<entry>
		<id>https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=PhD_hat_for_Ole&amp;diff=3237</id>
		<title>PhD hat for Ole</title>
		<link rel="alternate" type="text/html" href="https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=PhD_hat_for_Ole&amp;diff=3237"/>
		<updated>2024-01-22T13:55:45Z</updated>

		<summary type="html">&lt;p&gt;Thalhammer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Internal]]&lt;br /&gt;
&lt;br /&gt;
Date of defense: 20th of February 2024&lt;br /&gt;
Thesis here: https://www.sternwarte.uni-erlangen.de/~koenig/Koenig_Dissertation.pdf&lt;br /&gt;
&lt;br /&gt;
== Science: ==&lt;br /&gt;
* Cyg X-1 NICER timing paper&lt;br /&gt;
** Model of Cyg X-1 with Photon trajectories&lt;br /&gt;
** Model of NICER as cheese grinder&lt;br /&gt;
  &lt;br /&gt;
* eROSITA NOVA paper&lt;br /&gt;
** Eye of Sauron &lt;br /&gt;
** Evil smile plot  &lt;br /&gt;
  &lt;br /&gt;
==&amp;gt; Which of these is gonna be the center piece?   &lt;br /&gt;
  &lt;br /&gt;
* SIXTE Athena simulations &lt;br /&gt;
**Perseus Cluster with WFI &lt;br /&gt;
&lt;br /&gt;
== Hobby: ==&lt;br /&gt;
* Climbing: Ole-figurine hanging on rope as a tassel &lt;br /&gt;
* Remeis Skiing: Digging for lost ski &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Others:  ==&lt;br /&gt;
* Guided tours (&amp;amp; also for kids)&lt;br /&gt;
* Lab course: Azimuth experiment&lt;br /&gt;
&lt;br /&gt;
=== Travels: ===&lt;br /&gt;
* Train to ESAC Madrid&lt;br /&gt;
* Yosemite, Alps, Frankenjura&lt;br /&gt;
* Visit of CAltech&lt;br /&gt;
* Lots of talks after Nature paper&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Specific incidences: ===&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=== Memes &amp;amp; Images: ===&lt;br /&gt;
* ...&lt;/div&gt;</summary>
		<author><name>Thalhammer</name></author>
	</entry>
	<entry>
		<id>https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=PhD_hat_for_Ole&amp;diff=3236</id>
		<title>PhD hat for Ole</title>
		<link rel="alternate" type="text/html" href="https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=PhD_hat_for_Ole&amp;diff=3236"/>
		<updated>2024-01-22T13:45:48Z</updated>

		<summary type="html">&lt;p&gt;Thalhammer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Internal]]&lt;br /&gt;
&lt;br /&gt;
Date of defense: 20th of February 2024&lt;br /&gt;
&lt;br /&gt;
== Science: ==&lt;br /&gt;
* Cyg X-1 NICER timing paper&lt;br /&gt;
** Model of Cyg X-1 with Photon trajectories&lt;br /&gt;
** Model of NICER as cheese grinder&lt;br /&gt;
  &lt;br /&gt;
* eROSITA NOVA paper&lt;br /&gt;
** Eye of Sauron &lt;br /&gt;
** Evil smile plot  &lt;br /&gt;
  &lt;br /&gt;
==&amp;gt; Which of these is gonna be the center piece?   &lt;br /&gt;
  &lt;br /&gt;
* SIXTE Athena simulations &lt;br /&gt;
**Perseus Cluster with WFI &lt;br /&gt;
&lt;br /&gt;
== Hobby: ==&lt;br /&gt;
* Climbing: Ole-figurine hanging on rope as a tassle &lt;br /&gt;
* Remeis Skiing: Digging for lost ski &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Others:  ==&lt;br /&gt;
* Guided tours (&amp;amp; also for kids)&lt;br /&gt;
* Lab course: Azimuth experiment&lt;br /&gt;
&lt;br /&gt;
=== Travels: ===&lt;br /&gt;
* Train to ESAC Madrid&lt;br /&gt;
* Yosemite&lt;br /&gt;
* Lots of talks after Nature paper&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Specific incidences: ===&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=== Memes &amp;amp; Images: ===&lt;br /&gt;
* ...&lt;/div&gt;</summary>
		<author><name>Thalhammer</name></author>
	</entry>
	<entry>
		<id>https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=PhD_hat_for_Ole&amp;diff=3234</id>
		<title>PhD hat for Ole</title>
		<link rel="alternate" type="text/html" href="https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=PhD_hat_for_Ole&amp;diff=3234"/>
		<updated>2024-01-22T13:17:55Z</updated>

		<summary type="html">&lt;p&gt;Thalhammer: Ole&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Internal]]&lt;br /&gt;
&lt;br /&gt;
Date of defense: 20th of February 2024&lt;br /&gt;
&lt;br /&gt;
== Science: ==&lt;br /&gt;
- Cyg X-1 NICER timing &lt;br /&gt;
  - Model of Cyg X-1 with Photon trajectory&lt;br /&gt;
  - Model of NICER as cheese grinder&lt;br /&gt;
  - &lt;br /&gt;
- eROSITA NOVA&lt;br /&gt;
  - Eye of Sauron&lt;br /&gt;
  - Evil smile plot  &lt;br /&gt;
  - Nature paper &lt;br /&gt;
  &lt;br /&gt;
==&amp;gt; Which of these is gonna be the center piece?   &lt;br /&gt;
  &lt;br /&gt;
- SIXTE Athena simulations &lt;br /&gt;
  - Perseus Cluster with WFI &lt;br /&gt;
&lt;br /&gt;
== Hobby: ==&lt;br /&gt;
- Climbing: Rope as a tassle &lt;br /&gt;
- Remeis Skiing: Digging for lost ski &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Others:  ==&lt;br /&gt;
- Guided tours (&amp;amp; also for kids)&lt;br /&gt;
&lt;br /&gt;
=== Travels: ===&lt;br /&gt;
- Train to ESAC Madrid&lt;br /&gt;
- Yosemite&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Specific incidences: ===&lt;br /&gt;
- ...&lt;br /&gt;
&lt;br /&gt;
=== Memes &amp;amp; Images: ===&lt;br /&gt;
-- ...&lt;/div&gt;</summary>
		<author><name>Thalhammer</name></author>
	</entry>
	<entry>
		<id>https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Guided_Tours_and_Public_Outreach&amp;diff=3210</id>
		<title>Guided Tours and Public Outreach</title>
		<link rel="alternate" type="text/html" href="https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Guided_Tours_and_Public_Outreach&amp;diff=3210"/>
		<updated>2024-01-08T18:13:24Z</updated>

		<summary type="html">&lt;p&gt;Thalhammer: /* Monthly public tours */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;On this pages you can find all information needed to guide a tour through our observatory for public people.&lt;br /&gt;
&lt;br /&gt;
At least, that's the aim of this page, so please add information if you think its missing!&lt;br /&gt;
&lt;br /&gt;
= Platform =&lt;br /&gt;
&lt;br /&gt;
'''The following is important:'''&amp;lt;br&amp;gt;&lt;br /&gt;
Tours are officially '''organized''' by the [http://foerderverein-sternwarte-bamberg.de Foerderverein of the observatory], but '''operated''' by the observatory staff to be insured through the university!&lt;br /&gt;
&lt;br /&gt;
The main platform for the general public is&amp;lt;br&amp;gt;[http://foerderverein-sternwarte-bamberg.de/fuehrungen http://foerderverein-sternwarte-bamberg.de/fuehrungen].&lt;br /&gt;
&lt;br /&gt;
Here, tours can be ordered in two different ways:&lt;br /&gt;
* single persons and smaller groups can directly book public and regular guided tours via our webform at&amp;lt;br&amp;gt;https://www.sternwarte.uni-erlangen.de/guided-tours/&lt;br /&gt;
* larger groups may directly ask for a tour at a separate date either by email to&amp;lt;br&amp;gt;[mailto:fuehrungen@foerderverein-sternwarte-bamberg.de fuehrungen@foerderverein-sternwarte-bamberg.de]&amp;lt;br&amp;gt;or by phone. The email address is a forwarding to a certain person of the mailing list (see below).&lt;br /&gt;
&lt;br /&gt;
The source code of the webform for booking a public tour can be found in the GIT repository at&amp;lt;br&amp;gt;&lt;br /&gt;
[https://www.sternwarte.uni-erlangen.de/gitlab/webmaster/guided-tours https://www.sternwarte.uni-erlangen.de/gitlab/webmaster/guided-tours].&amp;lt;br&amp;gt;&lt;br /&gt;
All pushes to the master branch are automatically deployed at the official URL above!&lt;br /&gt;
&lt;br /&gt;
== Mailing List / Current &amp;quot;staff&amp;quot; ==&lt;br /&gt;
&lt;br /&gt;
All people interested in giving guided tours are member of the mailing list&amp;lt;br&amp;gt;&lt;br /&gt;
[mailto:astro-fuehrungen@lists.fau.de astro-fuehrungen@lists.fau.de]&amp;lt;br&amp;gt;&lt;br /&gt;
Please '''do not share''' this address with anybody outside of the observatory!&lt;br /&gt;
If you're not on the list but interested in giving tours, just ask Max to add you :-)&lt;br /&gt;
&lt;br /&gt;
New tours without a guide yet are usually announced via this list. See [[Mailing lists]] for the list administrator.&lt;br /&gt;
&lt;br /&gt;
In charge of organization:&lt;br /&gt;
* Katrin&lt;br /&gt;
&lt;br /&gt;
Currently, the following people give tours on a regular basis:&lt;br /&gt;
* Steven&lt;br /&gt;
* Christian&lt;br /&gt;
* Aafia&lt;br /&gt;
* Amy&lt;br /&gt;
* Philipp T.&lt;br /&gt;
* Alexey&lt;br /&gt;
* Katharina&lt;br /&gt;
&lt;br /&gt;
= Tip policy =&lt;br /&gt;
&lt;br /&gt;
The group is informed beforehand about the rule of tip. &lt;br /&gt;
For the guides the following applies for the money you get during the tour:&lt;br /&gt;
During the week (Monday till Friday) the factor for the donation, which goes directly to the Foerderverein, is 1/3 (33%), the rest (2/3) is your personal tip.&lt;br /&gt;
For weekend tours (Saturday, Sunday) the factor for the donation is 1/4 (25%).&lt;br /&gt;
&lt;br /&gt;
Make sure to hand in the donations immediately after your tour. Put the money on Ingos desk with a note stating which tour you gave, how much you received and how many people were there.&lt;br /&gt;
&lt;br /&gt;
= Offering Tours =&lt;br /&gt;
&lt;br /&gt;
At some point you're perhaps asked to give a tour or if it is possible to have one on a specific date. The latter might occur if Edith is out of her office and her telephone is redirected. In those cases you should know ''and'' check following things:&lt;br /&gt;
* '''Who is asking''' for a tour? &amp;lt;br&amp;gt; If you're on the phone ask for a name and write down the phone number where the person can be called!&lt;br /&gt;
* The '''number of people should be between 15 and 25'''. &amp;lt;br&amp;gt; Of course, the boundary conditions depend on the person guiding the tour. In a case of doubt, ask the guide or, if none is found yet, you simply can't promise that there will be a tour! In that case you may offer to look for a guide giving the tour anyway (and call the person back), but again don't make any promises! A list of people offering tours can be found below.&lt;br /&gt;
* What is the '''average age of the persons attending''' the tour? &amp;lt;br&amp;gt; That's an important point since the content of a tour differs between children and adults, of course. Furthermore some guides have favorite age groups!&lt;br /&gt;
* Carefully check the '''date and time of the tour'''!&lt;br /&gt;
** It's most likely to find a guide if the weekday of a tour is '''between Monday and Thursday'''. Friday might work if it is before noon, otherwise people might be on the way into the weekend. In all other cases you may offer to look for a guide giving the tour anyway (see the point about the group size above).&lt;br /&gt;
** Make sure that there is '''no tour scheduled already'''! For that look into our online calendar (the link can be found below) and on the whiteboard in the copying machine office.&lt;br /&gt;
** Related to the last point ensure that there is '''no lab course''' running at the date! The lab course is also marked in our online calendar.&lt;br /&gt;
** Usually, a tour will take '''about 1.5 to 2 hours'''.&lt;br /&gt;
* Clarify the '''costs for a tour''' beforehand!! &amp;lt;br&amp;gt; Unfortunately, we are '''not allowed to ask for money''' for giving a tour! The only way for getting money is to tell the people that they are welcomed to '''donate money to the [http://foerderverein-sternwarte-bamberg.de/| Foerderverein der Sternwarte]'''. In nearly every case the people or the one asking for a tour will pay something. A rule of thumb is that '''every person donates 3 EUR''' (for children 2 EUR are alright as well). &amp;lt;br&amp;gt; __For your ears only__: 1 EUR per attended person of the donated money will be transferred to the Förderverein (the current treasurer is Ingo, leave the money on his desk with a short note stating the number of people and what kind of a tour this was), the rest is for the guide! There will be a contact phone-number available, best would be to call the contacts-person before the tour to tell them these infos...&lt;br /&gt;
* '''Observing with our telescopes''' is possible, of course, but only in case of '''night and cloudless weather'''! No kidding, some people are not aware of these facts... &amp;lt;br&amp;gt; (&amp;quot;The day is too bright to see stars.&amp;quot;, &amp;quot;I'm sorry, we can't look trough the clouds.&amp;quot;, &amp;quot;The weather forecast is too uncertain, we can't promise.&amp;quot;) Please check if someone else has already signed in for one of the telescopes on the day/night of the guided tour!  '''IMPORTANT:'''  Be aware that you are not allowed to operate the telescopes on you own, there ALWAYS has to be at least a second person around. To assure that, you either have to have a second person from the observatory present (at least in the main building) or you have to set up AND disassemble everything while the people from the tour are there. Otherwise no observations are allowed to take place!&lt;br /&gt;
* If all the above points are clarified '''mark the tour''' &amp;lt;br&amp;gt; in our [https://www.sternwarte.uni-erlangen.de/calendar/ online calendar] and the whiteboard in the copying machine office. You have to be at a machine at the observatory to have access to the online calendar (to be more precisely: you're machine has to have an internal IP-address). &amp;lt;br&amp;gt; The entry into the online calendar, besides the date and time, should include &amp;quot;for whom is the tour and the group size, contact person and phone number, name of the guide giving the tour&amp;quot;. &amp;lt;br&amp;gt; The whiteboard template is as follows: &amp;quot;date, for whom is the tour, time, guide&amp;quot;&lt;br /&gt;
&lt;br /&gt;
= Giving a tour =&lt;br /&gt;
&lt;br /&gt;
Each tour has several stations, where you can show things or talk to the people. Useful information and experiences about that is listed below. It might be helpful as well to read the article about [[intern:popular_science:start|popular science]] in case you want or have to (if somebody asks) explain scientific aspects.&lt;br /&gt;
&lt;br /&gt;
== Preparation ==&lt;br /&gt;
&lt;br /&gt;
'''Before the tour'''&lt;br /&gt;
* Shut the doors of all offices in the main building (at least on the ground level) for several reasons: people are not allowed to walk in there and some of us are still working there during tours!&lt;br /&gt;
* Remove the northern hemisphere from the model of the inner solar system located in the entrance hall (you may put it into the Knigge room)&lt;br /&gt;
* Switch the lights on you need:&lt;br /&gt;
** entrance hall&lt;br /&gt;
** meteorite showcase (switch is on the right next to it)&lt;br /&gt;
** hallway to the meridian building; here are multiple switches&lt;br /&gt;
*** main light: right next to the door of the hallway or the backdoor of the main building (labeled &amp;quot;Meridian&amp;quot;)&lt;br /&gt;
*** info panels: on the opposite wall to the door next to the blue cupboard&lt;br /&gt;
*** showcases and Blinkkomparator: in the cutout box up the few stairs on the right wall close to the library, labeled &amp;quot;Linke Steckdosen&amp;quot;&lt;br /&gt;
* In case of observations&lt;br /&gt;
** make sure that you are '''never''' alone in the domes! There always have to be at least two people present.&lt;br /&gt;
** carry the needed oculars into the domes (for observations with the naked eye, the 40cm telescope is strongly recommended)&lt;br /&gt;
** do __not__ open the domes (first, it might start raining while nobody is there, and it's more fun for you to let the people do it)&lt;br /&gt;
** do __not__ remove the dust covers of the telescopes (wait until the dome has been opened)&lt;br /&gt;
** read the [[remeis:start|guide how to operate the telescopes and mountings]]&lt;br /&gt;
** after observing: shut down the telescope mounting, put the dust covers back on and close the domes&lt;br /&gt;
* In case of showing nice pictures&lt;br /&gt;
** make sure enough chairs are available&lt;br /&gt;
** switch on the beamer in the library, log into the machine and start your presentation, picture-viewer, ...&lt;br /&gt;
 &lt;br /&gt;
'''After the tour'''&lt;br /&gt;
* Switch the lights off&lt;br /&gt;
* Logout of the used machines and switch the beamer off&lt;br /&gt;
* Put on the dust covers of the telescopes in the hallway&lt;br /&gt;
* Protect the photo plates on the Blinkkomparator from getting dusty&lt;br /&gt;
* '''Move the entry from the whiteboard''' in the copying machine office '''to the list attached to the pin-board''' next to it&lt;br /&gt;
&lt;br /&gt;
== Material and Presentations ==&lt;br /&gt;
*Collected information valuable for guided tours: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours'' and ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/guidedtour.pdf''&lt;br /&gt;
&lt;br /&gt;
*A merger of (picture/video) presentations given at guided tours: &amp;lt;br&amp;gt; ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/guidedtour.odp'' &lt;br /&gt;
&lt;br /&gt;
*and according videos in  &amp;lt;br&amp;gt; ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/videos/''&lt;br /&gt;
&lt;br /&gt;
*Research and activities at Remeis from the radio to the gamma-rays (Tobi Beuchert): &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Andrea_tour_material/observations_allwavelength_remeisresearch_beuchert.pdf''&lt;br /&gt;
&lt;br /&gt;
*A presentation showing the astrophotography done at the observatory: &amp;lt;br&amp;gt; ''/data/media/slideshow_astrophotographie/optische_Quellen.pdf''&lt;br /&gt;
&lt;br /&gt;
*A video tour with Joern: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Joerns_example_tour''&lt;br /&gt;
&lt;br /&gt;
*A video tour with Uli (only hallway): &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Ulis_example_tour_hall_2019''&lt;br /&gt;
&lt;br /&gt;
*A complete tour by Sebastian Müller: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Sebastians_example_tour''&lt;br /&gt;
&lt;br /&gt;
*Presentations for tours by Andrea Gokus: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Andrea_tour_material'' &amp;lt;br&amp;gt; Contains presentations about the solar system (solar_system.pdf), neutrinos (neutrino_talk.pdf), overview of different objet types (impressions_universe.pdf)&lt;br /&gt;
&lt;br /&gt;
*Andreas tour notes: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Andrea_tour_material/Sternwarten_Fuehrungsnotizen.pdf''&lt;br /&gt;
&lt;br /&gt;
*Amys tour notes: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Guided_Tour_Information_Amy.pdf''&lt;br /&gt;
&lt;br /&gt;
*Tobis tour notes: &amp;lt;br&amp;gt; ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/guidedtour.pdf''&lt;br /&gt;
&lt;br /&gt;
*Information on clocks: &amp;lt;br&amp;gt; ''/data/media/history/2009-01_KlassikUhren_Poehlmann_Max_Ort.pdf''&lt;br /&gt;
&lt;br /&gt;
*Information on history of the observatory and the collection: &amp;lt;br&amp;gt; ''/data/media/history/AstronomischeSammlung.pdf''&lt;br /&gt;
&lt;br /&gt;
*History of the observatory (Litten): &amp;lt;br&amp;gt; ''/data/media/history/Litten-1.pdf'' &amp;lt;br&amp;gt; ''/data/media/history/Litten-2.pdf''&lt;br /&gt;
&lt;br /&gt;
*Last will of Dr. Karl Remeis: &amp;lt;br&amp;gt; ''/data/media/history/Testament_Karl_Remeis.pdf''&lt;br /&gt;
&lt;br /&gt;
*Die Remeis-Sternwarte zu Bamberg 1889-1939, E. Zinner: &amp;lt;br&amp;gt; [https://articles.adsabs.harvard.edu/cgi-bin/nph-iarticle_query?1939VeBam...4....1Z&amp;amp;amp;data_type=PDF_HIGH&amp;amp;amp;whole_paper=YES&amp;amp;amp;type=PRINTER&amp;amp;amp;filetype=.pdf ADS]&lt;br /&gt;
&lt;br /&gt;
== Picture presentation ==&lt;br /&gt;
&lt;br /&gt;
There are different modes for the beamer (e.g. presentation, videos, graphics etc.) which result in a different appearance of the images. Make sure to select a presentation mode in which the pictures appear in an appropriate brightness on the screen. (I think &amp;quot;graphics&amp;quot; was a good one).&lt;br /&gt;
&lt;br /&gt;
== Telescopes in the domes ==&lt;br /&gt;
It's nice to show the main mirror to the people so that they can see themselves. To do so, just turn down the telescope in declination. This is only possible for the 40cm as the 50cm-Mount has a mechanical stop.&lt;br /&gt;
&lt;br /&gt;
Sometimes people want to know what we do with the tiny, little telescopes attached on the side of the big ones. Those are guiding-scopes. You can attach a camera to them and let it take pictures of one star. If the star moves (what it shouldn't do) a correction signal is sent to the mount to compensate the movement of the star. Stars can &amp;quot;move&amp;quot; in an image for example due to impreciseness of the mount. &lt;br /&gt;
&lt;br /&gt;
The (dusty) plate in front of the 40cm mirror is called &amp;quot;Schmid-Platte&amp;quot;. It is used to improve the imaging of the telescope and to correct several errors of the mirrors like coma and field-curvature. As it is very sensitive to scratching, it won't be cleaned and left dusty. But the dust has hardly any effect on the images as it lays far outside of the focusplane. The optical design is similar to a Ritchey-Chrétien type regarding the capability, but has a spherical main mirror, an aspherical secondary mirror and a lens-corrector (=Schmidt-plate). The price of the telescope and the mount is roughly about 25.000€ altogether.&lt;br /&gt;
&lt;br /&gt;
The 50cm doesn't have a Schmid-Platte but a corrector (lenses) placed in the OAZ. It has an elliptical main mirror and a spherical secondary mirror (Corrected Dall Kirkham). The price of the telescope and the mount is roughly about 65.000€. The secondary mirror is, compared to the size of the main mirror, significantly larger than the 40cm-sec. mirror. This results in a better luminosity an a larger, flat-field which is important for taking images. We can achieve tracking accuracies of about 10min without guiding.&lt;br /&gt;
&lt;br /&gt;
== Monthly public tours ==&lt;br /&gt;
NOTE: even if there is already someone listed for a tour, please enter you availability&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Date &lt;br /&gt;
! Language&lt;br /&gt;
! Time&lt;br /&gt;
! Type&lt;br /&gt;
! Available Guides&lt;br /&gt;
! Backup&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/12/19&lt;br /&gt;
| German&lt;br /&gt;
| 6 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| Philipp&lt;br /&gt;
| -&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2024/01/09&lt;br /&gt;
| English&lt;br /&gt;
| 6 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| Federico&lt;br /&gt;
| -&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2024/01/19&lt;br /&gt;
| German&lt;br /&gt;
| 6 pm&lt;br /&gt;
| Tour for children (option 1)&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2024/01/23&lt;br /&gt;
| German&lt;br /&gt;
| 6 pm&lt;br /&gt;
| Tour for children (option 2)&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2024/01/30&lt;br /&gt;
| German&lt;br /&gt;
| 6 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| Philipp&lt;br /&gt;
| -&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2024/02/06&lt;br /&gt;
| English&lt;br /&gt;
| 6 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| Federico&lt;br /&gt;
| -&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2024/02/13&lt;br /&gt;
| German&lt;br /&gt;
| 6 pm&lt;br /&gt;
| Tour for children&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2024/02/27&lt;br /&gt;
| German&lt;br /&gt;
| 6 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Tours looking for a guide ==&lt;br /&gt;
ATTENTION: tours are not sorted by the date of the tour, but the time when they were requested&lt;br /&gt;
&lt;br /&gt;
NOTE: please enter you availability even if there is already another name listed.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Date &lt;br /&gt;
! Language&lt;br /&gt;
! Time&lt;br /&gt;
! Organizer &lt;br /&gt;
! Additional information &lt;br /&gt;
! # People&lt;br /&gt;
! Observing&lt;br /&gt;
! Available Guides&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2024/01/17 or 2024/01/22&lt;br /&gt;
| German&lt;br /&gt;
| evening&lt;br /&gt;
| Schneider&lt;br /&gt;
| three kids age 6,9,14 (one autistic and interested in stars)&lt;br /&gt;
| 5 people &lt;br /&gt;
| yes&lt;br /&gt;
| &lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2024/02/07&lt;br /&gt;
| German&lt;br /&gt;
| evening&lt;br /&gt;
| NEO Labs&lt;br /&gt;
| kids age 6 to 9&lt;br /&gt;
| max 15 people (kids with supervisors)&lt;br /&gt;
| yes&lt;br /&gt;
| &lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Observing ==&lt;br /&gt;
&lt;br /&gt;
[[Category:Internal]]&lt;/div&gt;</summary>
		<author><name>Thalhammer</name></author>
	</entry>
	<entry>
		<id>https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Skivergnuegen_2024&amp;diff=3200</id>
		<title>Skivergnuegen 2024</title>
		<link rel="alternate" type="text/html" href="https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Skivergnuegen_2024&amp;diff=3200"/>
		<updated>2024-01-08T10:52:51Z</updated>

		<summary type="html">&lt;p&gt;Thalhammer: /* Aufteilung */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Remeis Skifahren 2024, 13.01.24-20.01.24''' The same procedure as every year ;-) &lt;br /&gt;
Hier werden die wichtigsten organisatorischen Dinge festgehalten. Jeder darf hier gerne editieren; wer keinen Account für das Wiki hat, muss sich bitte an jemanden wenden, der Zugang hat.&lt;br /&gt;
&lt;br /&gt;
[[File:154854 silvretta-montafon-panorama.jpeg|right|700px]]&lt;br /&gt;
&lt;br /&gt;
== Allgemeine Infos ==&lt;br /&gt;
&lt;br /&gt;
*Ferienwohnung(en):&lt;br /&gt;
**Wir kommen wieder unter im [https://www.grandau.at/montafon/zimmer/ferienhaus-enzian Haus Enzian] des [https://www.grandau.at/ Sporthotels Grandau].&lt;br /&gt;
**Adresse des Sporthotel: Montafonerstraße 274a, 6791 St. Gallenkirch, Österreich. Unsere Unterkünfte liegen im Türkeiweg.&lt;br /&gt;
&lt;br /&gt;
*Skigebiet: Montafon (Vorarlberg)&lt;br /&gt;
**Skigebiet Karte: https://winter.intermaps.com/montafon?lang=de&lt;br /&gt;
**Skipass Preise:  https://www.silvretta-montafon.at/de/onlineshop/ticket-uebersicht&lt;br /&gt;
**Wer nicht alle 7 Tage Skifahren möchte: Es gibt Angebote wie z.B. 5 aus 6, mit einem solchen Skipass kann man innerhalb von 6 Tagen an 5 beliebigen Tagen skifahren.&lt;br /&gt;
&lt;br /&gt;
*Skiverleih: [http://www.sportharry.at/ Sport Harry], direkt an der Talstation.&lt;br /&gt;
&lt;br /&gt;
== Unterkunft ==&lt;br /&gt;
=== Aufteilung ===&lt;br /&gt;
&lt;br /&gt;
Dieses Jahr gibt es die Hütte mit folgenden Zimmern (wir sind insgesamt 13-15, also bleiben keine Plätze frei).&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Zimmer&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Insassen&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;row&amp;quot; | 2-er&lt;br /&gt;
| Aafia, Amy&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;row&amp;quot; | 3-er&lt;br /&gt;
| Jakob, Katya, Flo&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;row&amp;quot; | 4-er&lt;br /&gt;
| Eugenia (ab So, Einzelbett), Sebastian W. (Doppelbett), Marina B. (ab Di, Doppelbett), Ole (ab Sonntag)&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;row&amp;quot; | 5-er&lt;br /&gt;
| Christian H., Bastien G., Philipp&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Außerdem gibt es ein Apartment für die Familien mit Kindern  ;-): Eva+Steffen+Tom+Lorenz, Nela+Ohle+Sophia&lt;br /&gt;
&lt;br /&gt;
== Fahrer ==&lt;br /&gt;
Fahrer können sich hier eintragen und Eckdaten angeben. Diejenige, die mitfahren möchten, sprechen sich mit den Fahrern ab und tragen sich ebenfalls ein. Klärt bitte auch die Gepäcklage, ggf. kann ein anderer Fahrer z.B. Skiausrüstung mitnehmen.&lt;br /&gt;
&lt;br /&gt;
'''Auf der Suche nach einer Mitfahrgelegenheit: '''&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Fahrer&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | # Plätze&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Anreise&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Mitfahrer Anreise&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Abreise&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Mitfahrer Abreise&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Skimitnahme&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Kommentar&lt;br /&gt;
|-&lt;br /&gt;
|evtl. Christian H.? &lt;br /&gt;
|&lt;br /&gt;
|Sa, Fürth&lt;br /&gt;
|&lt;br /&gt;
|Sa, Fürth&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|no car, but could borrow one?&lt;br /&gt;
|-&lt;br /&gt;
|Marina B.&lt;br /&gt;
|3 ohne Fahrer&lt;br /&gt;
|Di, Geretsried, über München&lt;br /&gt;
|&lt;br /&gt;
|Sa, Erlangen oder Geretsried&lt;br /&gt;
|Sebastian W. ?&lt;br /&gt;
|ja&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Flo&lt;br /&gt;
|3 mit Fahrer&lt;br /&gt;
|Sa aus Nürnberg über München&lt;br /&gt;
|Tobi&lt;br /&gt;
|Sa nach München&lt;br /&gt;
|Eugenia (nicht sicher)&lt;br /&gt;
|ja&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Schwarzes Brett ==&lt;br /&gt;
&lt;br /&gt;
=== Essen ===&lt;br /&gt;
Hier gibt's den Essensplan, soweit übernommen von den letzten Jahren. Da wir sehr viele Leute sind, sollten wir wieder vorab grob planen, was wir kochen wollen. Wir können einige Dinge in Deutschland besorgen und mitnehmen, es gib aber auch einen nahe gelegen Supermarkt. Generelle Dinge, wie z.B. Gewürze oder Aufstriche für Frühstücksbrötchen könnte man auch mitbringen.&lt;br /&gt;
&lt;br /&gt;
Wer Kochvorschläge oder andere Ideen hat, gerne unten eintragen und kommentieren. Bedenkt, dass die Zubereitung (relativ) einfach sein sollte. Da sich die Liste in den letzten Jahren gut bewaehrt hat, behalten wir sie bei, aber die Reihenfolge/Tage kann man sicher noch hin und her bewegen. Einige (wenige) Sachen müssen wir dann manchmal trotzdem noch beim Spar kaufen, da ja auch der Kühlschrank nur begrenzt Platz hat.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Essenplan:'''&lt;br /&gt;
*Samstag: Spaghetti Bolognese + veg. Bolognese&lt;br /&gt;
*Sonntag: Käse Spätzle&lt;br /&gt;
*Montag: Burritos&lt;br /&gt;
*Dienstag: Risotto&lt;br /&gt;
*Mittwoch: Gulasch&lt;br /&gt;
*Donnerstag: Kartoffeln mit Kräuter-Quark&lt;br /&gt;
*Freitag: Dal mit Reis  (od. Curry mit Suesskartoffeln )&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Einkaufsliste von 2022 (vorletztes Jahr): https://docs.google.com/document/d/166b_mIXxmoAgcv1upIGremd_36E1fmwwxsQADP2uEv8/&lt;br /&gt;
&lt;br /&gt;
@Christian: Vegane Option entwender selbst mitbringen oder hier mit reinschreiben (falls man die einfach bekommt)&lt;br /&gt;
&lt;br /&gt;
=== Alkohol/Party ===&lt;br /&gt;
&lt;br /&gt;
Stiegl (Johannes?)&lt;br /&gt;
&lt;br /&gt;
=== Spiele ===&lt;br /&gt;
 &lt;br /&gt;
Immer lustig sind gemeinsame Spieleabende. Also, wer im Besitz von Gesellschaftsspielen ist, bringt diese gerne mit! Um eine Übersicht zu bekommen auch bitte hier eintragen:&lt;br /&gt;
&lt;br /&gt;
''* Secret Hitler (Johannes?)''&lt;br /&gt;
&lt;br /&gt;
6 nimmt, Uno, Kniffel (Marina B.)&lt;br /&gt;
&lt;br /&gt;
=== Sonstiges ===&lt;br /&gt;
&lt;br /&gt;
Ich (Marina B.) mache sehr gerne Langlauf (Skating). Lässt sich sonst noch jemand für Langlauf begeistern? :)&lt;br /&gt;
&lt;br /&gt;
Ich nehme meine Langlaufausrüstung mit und würde mich total freuen, wenn der ein oder andere Langlauf ausprobiert, egal ob Klassisch oder Skating.&lt;br /&gt;
&lt;br /&gt;
=== Alternativprogramm ===&lt;br /&gt;
  *  Rodeln (http://www.montafon.at/de/urlaubswelten/echte_naturliebhaber/rodeln)&lt;br /&gt;
  *  Schneeschuhwandern (http://www.montafon.at/schneeschuhwanderungen)&lt;br /&gt;
  *  Langlauf (https://www.montafon.at/de/Bergerlebnisse/Schnee/Langlaufen)&lt;br /&gt;
  *  Therme (http://www.montafon.at/schwimmen), z.B. http://www.aqua-dome.at/de (ca. 130km entfernt!)&lt;br /&gt;
&lt;br /&gt;
[[Category:Internal]]&lt;/div&gt;</summary>
		<author><name>Thalhammer</name></author>
	</entry>
	<entry>
		<id>https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=List_of_accreting_X-ray_pulsars&amp;diff=3148</id>
		<title>List of accreting X-ray pulsars</title>
		<link rel="alternate" type="text/html" href="https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=List_of_accreting_X-ray_pulsars&amp;diff=3148"/>
		<updated>2023-12-01T17:11:12Z</updated>

		<summary type="html">&lt;p&gt;Thalhammer: /* Notes: */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Accreting X-ray Pulsars]]&lt;br /&gt;
&lt;br /&gt;
= List of accreting X-ray pulsars =&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
! Source&lt;br /&gt;
! RA&lt;br /&gt;
! Dec&lt;br /&gt;
! l&lt;br /&gt;
! b&lt;br /&gt;
! Pspin (s)&lt;br /&gt;
! Porbit (d)&lt;br /&gt;
! Type&lt;br /&gt;
! CRSF?&lt;br /&gt;
! Persistent?&lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| [[CXOU J005047.9-731817]] || 12.699963 || -73.305018 || 302.995436 || -43.823153 || 292 ||   || [[List of Be X-ray Binaries|BeXRB]]? ||   || T || aka SXP 292&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[RX J0059.2-7138]] || 14.803112 || -71.645828 || 302.059336 || -45.469247 || 2.76 || 82? || [[List of Be X-ray Binaries|BeXRB]]? || [[List of cyclotron line sources|C]]? || T || aka SXP 2.76&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[RX J0101.8-7223]] || 15.467910 || -72.392796 || 301.821935 || -44.712961 || 175 ||   || [[List of Be X-ray Binaries|BeXRB]] ||   || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[SMC X-1]] || 19.271456 || -73.443343 || 300.414946 || -43.559342 || 0.71 || 3.892 || SG ||   || P || eclipsing&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[3A 0114+650]] || 19.511228 || 65.291623 || 125.709976 || 2.563488 || 9828 || 11.6 || SG ||   || P || 30.7 d superorbital modulation&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 0115+634]] || 19.633194 || 63.742522 || 125.923515 || 1.028265 || 3.6 || 24.3 || [[List of Be X-ray Binaries|BeXRB]] || [[List of cyclotron line sources|C]] || T || 5 or more lines&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[SXP 265]] || 23.214439 || -74.429258 || 299.185905 || -42.396387 || 264.52 || ~146 || [[List of Be X-ray Binaries|BeXRB]] ||   || PT || SMC region, persistent low luminosity, one type I outburst&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[RX J0146.9+6121]] || 26.750876 || 61.356573 || 129.541104 || -0.800112 || 1412 || 330? || [[List of Be X-ray Binaries|BeXRB]] ||   || T || aka V* V831 Cas&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J01583+6713]] || 29.577033 || 67.223185 || 129.352236 || 5.188723 || 469? ||   || [[List of Be X-ray Binaries|BeXRB]] || [[List of cyclotron line sources|C]]? || T || controversial claim of CRSF features&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[Swift J0243.6+6124]] || 40.918432 || 61.434378 || 135.934157 || 1.428788 || 9.86 || 27.587 || [[List of Be X-ray Binaries|BeXRB]] ||   || T || Galactic ULX?&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[V 0332+53]] || 53.749630 || 53.173140 || 146.052090 || -2.194026 || 4.37 || 34.25 || [[List of Be X-ray Binaries|BeXRB]] || [[List of cyclotron line sources|C]] || T || multiple lines&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[X Per]] || 58.846151 || 31.045836 || 163.081353 || -17.136203 || 830 || 250.3 || [[List of Be X-ray Binaries|BeXRB]] || [[List of cyclotron line sources|C]]? || P || magnetar?&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[RX J0440.9+4431]] || 70.247207 || 44.530344 || 159.847095 || -1.270023 || 203 || 155 || [[List of Be X-ray Binaries|BeXRB]] ||   || P || aka LS V+44 17, persistent, but with outbursts&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[LXP 169]] || 76.981153 || -68.418135 || 279.245167 || -34.534204 || 168.8 || 24.3 || [[List of Be X-ray Binaries|BeXRB]] ||   || T? || NS eclipsing companion&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[Swift J053041.9-665426]] || 82.675788 || -66.907566 || 276.997292 || -32.675902 || 28.78 ||   || [[List of Be X-ray Binaries|BeXRB]] ||   || T? ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[LMC X-4]] || 83.206501 || -66.370332 || 276.334942 || -32.529084 || 13.5 || 1.4 || SG ||   || P || superorbital variation ~30 d&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[1A 0535+26]] || 84.727393 || 26.315776 || 181.445049 || -2.643537 || 103 || 111.1 || [[List of Be X-ray Binaries|BeXRB]] || [[List of cyclotron line sources|C]] || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[SAX J0635.2+0533]] || 98.822528 || 5.553870 || 206.149196 || -1.044562 || 0.0338 ||   || [[List of Be X-ray Binaries|BeXRB]] ||   || T || low luminosity&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[MXB 0656-07]] || 104.572030 || -7.209774 || 220.128540 || -1.767278 || 160.4 || 101.2 || [[List of Be X-ray Binaries|BeXRB]] || [[List of cyclotron line sources|C]] ||   || aka XTE J0658-073&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[3A 0726-260]] || 112.223241 || -26.108019 || 240.281581 || -4.050430 || 103.2 || 34.5 || [[List of Be X-ray Binaries|BeXRB]] ||   || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[RX J0812.4-3114]] || 123.118149 || -31.247807 || 249.578200 || 1.542815 || 31.9 || 80 || [[List of Be X-ray Binaries|BeXRB]] ||   || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[GS 0834-430]] || 128.981072 || -43.185598 || 262.020238 || -1.509977 || 12.3 || 105.8 || [[List of Be X-ray Binaries|BeXRB]] ||   || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[Vela X-1]] || 135.528560 || -40.554654 || 263.058248 || 3.929864 || 283 || 8.96 || SG || [[List of cyclotron line sources|C]] || P || eclipsing&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[GRO J1008-57]] || 152.439620 || -58.292035 || 282.996761 || -1.822544 || 93.7 || 249.48 || [[List of Be X-ray Binaries|BeXRB]] || [[List of cyclotron line sources|C]]? || T || outbursts predicted precisely&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1036-56]] || 159.397094 || -56.798840 || 285.352684 || 1.433482 || 862 ||   || [[List of Be X-ray Binaries|BeXRB]] ||   || P? || aka RX J1037.5-564/LS 1698&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[1A 1118-616]] || 170.238174 || -61.916707 || 292.498528 || -0.891807 || 407 || 24? || [[List of Be X-ray Binaries|BeXRB]] || [[List of cyclotron line sources|C]] || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[Cen X-3]] || 170.312856 || -60.623776 || 292.090328 || 0.335524 || 4.8 || 2.09 || SG || [[List of cyclotron line sources|C]] || P || disk-fed HMXB&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[1E1145.1-6141]] || 176.868942 || -61.953720 || 295.489729 || -0.009704 || 297 || 14.4 || SG ||   ||   || (V* V830 Cen) varying luminosity states&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1145-619]] || 177.000032 || -62.206910 || 295.611079 || -0.240241 || 292 || 187.5 || [[List of Be X-ray Binaries|BeXRB]] ||   || PT ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[GX 301-2]] || 186.656453 || -62.770359 || 300.098061 || -0.035212 || 686 || 41.5 || SG || [[List of cyclotron line sources|C]] || P || very massive companion, strong orbital variability&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[3A 1239-599]] || 190.508997 || -60.200951 || 301.762822 || 2.649455 || 191 ||   ||   ||   ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[GX 304-1]] || 195.321198 || -61.601845 || 304.102702 || 1.247519 || 272 || 132.2 || [[List of Be X-ray Binaries|BeXRB]] || [[List of cyclotron line sources|C]] || T || Strong spectral parameter variations&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[SAX J1324.4-6200]] || 201.108853 || -62.016515 || 306.792444 || 0.607646 || 171 || 22 || [[List of Be X-ray Binaries|BeXRB]]? ||   ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[2S 1417-624]] || 215.303896 || -62.698168 || 313.021369 || -1.598347 || 17.6 || 42.12 || [[List of Be X-ray Binaries|BeXRB]] ||   || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[SAX J1452.8-5949]] || 223.207002 || -59.820983 || 317.646019 || -0.463151 || 437 ||   || [[List of Be X-ray Binaries|BeXRB]]? ||   ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1538-522]] || 235.597300 || -52.386011 || 327.419660 || 2.163700 || 530 || 3.7 || SG || [[List of cyclotron line sources|C]] || P ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[2S 1553-542]] || 239.452345 || -54.416113 || 327.942599 || -0.857197 || 9.3 || 29.56 || [[List of Be X-ray Binaries|BeXRB]]? ||   || P || Occasional outbursts&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J16194-2810]] || 244.888926 || -28.127773 || 349.119337 || 15.541316 ||   ||   || [[List of symbiotic X-ray binaries|SyXB]] ||   ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[Swift J1626.6-5156]] || 246.652146 || -51.941848 || 332.780988 || -2.002708 || 15.4 || 132.9 || [[List of Be X-ray Binaries|BeXRB]] || [[List of cyclotron line sources|C]] || T || strong flares&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J16318-4848]] || 247.951259 || -48.816876 || 335.615970 || -0.447754 ||   ||   || SG ||   || P || super absorbed source&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J16320-4751]] || 248.009669 || -47.874785 || 336.330340 || 0.167654 || 1309 || 8.986 || SG ||   || P || aka 2FGL J1632.4-4753c&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1626-67]] || 248.069509 || -67.461207 || 321.788013 || -13.091773 || 7.67 || 0.029 || UCXB || [[List of cyclotron line sources|C]] || P || Torque reversals; only UCXB with CRSF.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J16358-4726]] || 249.124997 || -47.623903 || 337.023067 || -0.213710 || 5880 ||   || [[List of symbiotic X-ray binaries|SyXB]] ||   ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J16393-4643]] || 249.772382 || -46.704006 || 338.001098 || 0.075060 || 912 || 3.7 || [[List of symbiotic X-ray binaries|SyXB]] ||   ||   || aka AX J1639.0-4642&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J16465-4507]] || 251.646902 || -45.117960 || 340.053530 || 0.135029 || 228 || 30.243 ||   ||   || P || aka 2MASS J16463526-4507045&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[Her X-1]] || 254.457539 || 35.342324 || 58.148987 || 37.523034 || 1.24 || 1.7 || IM || [[List of cyclotron line sources|C]] || P ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[AX J1700.1-4157]] || 255.018132 || -41.968217 || 344.037996 || 0.235782 || 715 ||   || [[List of Be X-ray Binaries|BeXRB]]? ||   ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[OAO 1657-415]] || 255.202665 || -41.654882 || 344.369539 || 0.320505 || 37.7 || 10.4 || SG || [[List of cyclotron line sources|C]]? || P || eclipsing&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1700-37]] || 255.986566 || -37.844121 || 347.754446 || 2.173492 ||   || 3.4 || SG ||   || P || No pulsations; eclipsing source&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1700+24]] || 256.643762 || 23.971820 || 45.151698 || 32.990711 || 404 ||   || [[List of symbiotic X-ray binaries|SyXB]] ||   ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[EXO 1722-363]] || 261.296681 || -36.284621 || 351.495256 || -0.354515 || ~414 || 9.74 || HMXB ||   ||   || aka IGR J17252–3616, heavily absorbed, eclipsing&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[GX 1+4]] || 263.008955 || -24.745600 || 1.937022 || 4.794969 || 170 || 1161 || [[List of symbiotic X-ray binaries|SyXB]] ||   || P || Pspin evolving rapidly&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[2XMM J174016.0-290337]] || 265.067079 || -29.060569 || 359.278793 || 0.929892 || 626 ||   || [[List of symbiotic X-ray binaries|SyXB]] ||   ||   || a. k.a. AX_J1740.2-2903&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[GRO J1744-28]] || 266.139419 || -28.744480 || 0.042075 || 0.298489 || 0.47 || 11.8 || LMXB ||   || T || &amp;quot;Bursting Pulsar&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[GRO J1750-27]] || 267.291434 || -26.639700 || 2.370662 || 0.518408 || 4.45 || 29.82 || [[List of Be X-ray Binaries|BeXRB]]? ||   || P || aka AX J1749.1-2639&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J17544-2619]] || 268.605299 || -26.331274 || 3.235980 || -0.335557 ||   || 4.93 || SFXT? || [[List of cyclotron line sources|C]] || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[SAX J1802.7-2017]] || 270.665728 || -20.286816 || 9.417461 || 1.044121 || 139.6 || 4.57 || SG ||   || P || aka IGR J18027-2016&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[1RXS J180431.1-273932]] || 271.130284 || -27.659214 || 3.202710 || -2.947774 || 494 ||   || [[List of symbiotic X-ray binaries|SyXB]] ||   ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[SAX J1808.4-3658]] || 272.114166 || -36.979379 || 355.384418 || -8.148034 || 0.0025 || 0.837 || LMXB ||   ||   || aka V* V4580 Sgr, disk accretor(?)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[Swift J1816.7-1613]] || 274.176846 || -16.222949 || 14.587018 || 0.092428 || 142.9 || 151? || [[List of Be X-ray Binaries|BeXRB]]? ||   || T || [http://www.astronomerstelegram.org/?read=6253 ATel 6253] [http://www.astronomerstelegram.org/?read=1457 ATel 1457]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J18179-1621]] || 274.467048 || -16.359400 || 14.599162 || -0.217510 || 11.82 ||   ||   || [[List of cyclotron line sources|C]]? || T || [http://www.astronomerstelegram.org/?read=1457 ATel 3947] [http://www.astronomerstelegram.org/?read=3949 ATel 3949]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[AX J1820.5-1434]] || 275.122921 || -14.571809 || 16.473200 || 0.070620 || 152 ||   ||   ||   ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[3A 1822-371]] || 276.445028 || -37.105158 || 356.850238 || -11.290768 || 0.59 || 0.23 || LMXB ||   ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[Sct X-1]] || 278.857602 || -7.614004 || 24.336027 || 0.065699 || 112 || 111 || [[List of symbiotic X-ray binaries|SyXB]] ||   ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[GS 1843+00]] || 281.403474 || 0.863160 || 33.036370 || 1.689359 ||   ||   ||   ||   || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[2S 1845-024]] || 282.075590 || -2.419729 || 30.421052 || -0.406023 || 94.8 || 242.2 || [[List of Be X-ray Binaries|BeXRB]]? ||   || T || aka GS 1843-02&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[XTE J1855-026]] || 283.876680 || -2.604678 || 31.076348 || -2.092060 || 361 || 6.1 || SG ||   ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[XTE J1858+034]] || 284.678379 || 3.439739 || 36.822153 || -0.048088 ||   || 221 ||   ||   || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[XTE J1859+083]] || 284.778177 || 8.246352 || 41.144826 || 2.058031 || 9.8 ||   ||   ||   || T || [http://www.astronomerstelegram.org/?read=7037 ATel 7037]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1901+03]] || 285.903524 || 3.190426 || 37.159966 || -1.249760 ||   ||   ||   ||   || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[XTE J1906+090]] || 286.197769 || 9.044912 || 42.497189 || 1.174872 || 89.2 ||   || [[List of Be X-ray Binaries|BeXRB]]? ||   ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1907+09]] || 287.408533 || 9.829777 || 43.743566 || 0.475292 || 441 || 8.37 || SG || [[List of cyclotron line sources|C]] || P ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1909+07]] || 287.700872 || 7.597657 || 41.896991 || -0.811637 || 604 || 4.4 || SG ||   || P ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J19140+0951]] || 288.517606 || 9.882865 || 44.296348 || -0.468771 ||   || 13.55 || HMXB ||   || ? ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J19149+1036]] || 288.728311 || 10.612245 || 45.038573 || -0.313490 ||   || 22.25 || SG || [[List of cyclotron line sources|C]] || P || very close to GRS1915&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J19294+1816]] || 292.482927 || 18.310607 || 53.540075 || 0.115022 || 12.5 || 116? || [[List of Be X-ray Binaries|BeXRB]]? ||   || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[XTE J1946+274]] || 296.413975 || 27.365400 || 63.207144 || 1.395565 || 15.8 || 169.2 || [[List of Be X-ray Binaries|BeXRB]] || [[List of cyclotron line sources|C]] || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[KS 1947+300]] || 297.397839 || 30.208809 || 66.098966 || 2.083585 || 18.8 || 40.4 || [[List of Be X-ray Binaries|BeXRB]] || [[List of cyclotron line sources|C]] || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[3A 1954+319]] || 298.926399 || 32.096931 || 68.391941 || 1.926894 || 1.91e4 ||   || [[List of symbiotic X-ray binaries|SyXB]] ||   ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[EXO 2030+375]] || 308.063627 || 37.637433 || 77.151841 || -1.241801 || 41.8 || 46.03 || [[List of Be X-ray Binaries|BeXRB]] ||   || T || regular outbursts&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[GRO J2058+42]] || 314.698059 || 41.776980 || 83.569877 || -2.655492 ||   ||   ||   ||   || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[SAX J2103.5+4545]] || 315.898770 || 45.751533 || 87.130252 || -0.684802 || 359 || 12.7 || [[List of Be X-ray Binaries|BeXRB]] ||   || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J21343+4738]] || 323.584869 || 47.633380 || 92.171608 || -3.117683 || 320.35 || 20.85 || [[List of Be X-ray Binaries|BeXRB]] ||   || P? || Varying levels of activity&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[Cep X-4]] || 324.877853 || 56.986219 || 99.012209 || 3.312526 || 66.32 || 20.85 || [[List of Be X-ray Binaries|BeXRB]] || [[List of cyclotron line sources|C]] || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 2206+54]] || 331.984289 || 54.518433 || 100.603243 || -1.105922 || 5560 || 19.25? || SG ||   || P || magnetar?&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[SAX J2239.3+6116]] || 339.836831 || 61.274053 || 107.734431 || 2.362332 || 1247 || 262? || [[List of Be X-ray Binaries|BeXRB]] ||   || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J22534+6243]] || 343.479672 || 62.726882 || 109.923864 || 2.861557 || 46.7 ||   || [[List of Be X-ray Binaries|BeXRB]]? ||   || P? ||  &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Location in the Galaxy =&lt;br /&gt;
&lt;br /&gt;
The figure below displays the position of accreting X-ray pulsars in the Galaxy as far as known at this moment. Click on the figure for a larger version. Labels indicate the ordinal number in the first column of the table. Uncertainties in the distances are not indicated. Empty symbols represent sources for which there is no distance info in the literature; they have been artificially set to a distance of 7.6 kpc. [http://heasarc.gsfc.nasa.gov/W3Browse/catalog/class.html HEASARC source class identifiers] are also given. The spiral arms are from Vallée et al. (2008)&amp;lt;ref name=&amp;quot;Vallee08&amp;quot; /&amp;gt;. Figure and data provided by Arash Bodaghee, SSL, UC Berkeley.&lt;br /&gt;
&lt;br /&gt;
[[File:galacticdistributionxrp.png|560px|Galactic distribution of accreting X-ray pulsars.]]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! #&lt;br /&gt;
! Source                &lt;br /&gt;
! Class &lt;br /&gt;
! Dist. [kpc]&lt;br /&gt;
!   &lt;br /&gt;
! # &lt;br /&gt;
! Source                &lt;br /&gt;
! Class &lt;br /&gt;
! Dist. [kpc]&lt;br /&gt;
|-&lt;br /&gt;
|    1&lt;br /&gt;
| GRO_J1744-28          &lt;br /&gt;
|  1490 &lt;br /&gt;
|          8.5&lt;br /&gt;
|     &lt;br /&gt;
|   33&lt;br /&gt;
| 3A_0656-072           &lt;br /&gt;
|  1316 &lt;br /&gt;
|          3.9&lt;br /&gt;
|-&lt;br /&gt;
|    2&lt;br /&gt;
| GX_1+4                &lt;br /&gt;
|  1410 &lt;br /&gt;
|          4.5&lt;br /&gt;
|   &lt;br /&gt;
|   34&lt;br /&gt;
| 3A_0726-260           &lt;br /&gt;
|  1310 &lt;br /&gt;
|          6.1&lt;br /&gt;
|-&lt;br /&gt;
|    3&lt;br /&gt;
| GRO_J1750-27          &lt;br /&gt;
|  1316 &lt;br /&gt;
|           ? &lt;br /&gt;
|   &lt;br /&gt;
|   35&lt;br /&gt;
| RX_J0812.4-3114       &lt;br /&gt;
|  1316 &lt;br /&gt;
|          8.8&lt;br /&gt;
|-&lt;br /&gt;
|    4&lt;br /&gt;
| 1RXS_J180431.1-273932 &lt;br /&gt;
|  1410 &lt;br /&gt;
|           ? &lt;br /&gt;
|   &lt;br /&gt;
|   36&lt;br /&gt;
| Ginga_0834-430        &lt;br /&gt;
|  1316 &lt;br /&gt;
|            4&lt;br /&gt;
|-&lt;br /&gt;
|    5&lt;br /&gt;
| AX_J1820.5-1434       &lt;br /&gt;
|  1316 &lt;br /&gt;
|          8.2&lt;br /&gt;
|   &lt;br /&gt;
|   37&lt;br /&gt;
| Vela_X-1              &lt;br /&gt;
|  1213 &lt;br /&gt;
|          1.4&lt;br /&gt;
|-&lt;br /&gt;
|    6&lt;br /&gt;
| XTE_J1855-026         &lt;br /&gt;
|  1213 &lt;br /&gt;
|           10&lt;br /&gt;
|   &lt;br /&gt;
|   38&lt;br /&gt;
| LMC_X-4               &lt;br /&gt;
|  1210 &lt;br /&gt;
|           55&lt;br /&gt;
|-&lt;br /&gt;
|    7&lt;br /&gt;
| Sct_X-1               &lt;br /&gt;
|  1116 &lt;br /&gt;
|            7&lt;br /&gt;
|   &lt;br /&gt;
|   39&lt;br /&gt;
| GRO_J1008-57          &lt;br /&gt;
|  1316 &lt;br /&gt;
|            5&lt;br /&gt;
|-&lt;br /&gt;
|    8&lt;br /&gt;
| Ginga_1843+009        &lt;br /&gt;
|  1316 &lt;br /&gt;
|         12.5&lt;br /&gt;
|   &lt;br /&gt;
|   40&lt;br /&gt;
| 4U_1036-56            &lt;br /&gt;
|  1316 &lt;br /&gt;
|            5&lt;br /&gt;
|-&lt;br /&gt;
|    9&lt;br /&gt;
| 4U_1901+03            &lt;br /&gt;
|  1366 &lt;br /&gt;
|           ? &lt;br /&gt;
|   &lt;br /&gt;
|   41&lt;br /&gt;
| Cen_X-3               &lt;br /&gt;
|  1263 &lt;br /&gt;
|           10&lt;br /&gt;
|-&lt;br /&gt;
|   10&lt;br /&gt;
| 4U_1909+07            &lt;br /&gt;
|  1210 &lt;br /&gt;
|            7&lt;br /&gt;
|   &lt;br /&gt;
|   42&lt;br /&gt;
| 1A_1118-615           &lt;br /&gt;
|  1366 &lt;br /&gt;
|            5&lt;br /&gt;
|-&lt;br /&gt;
|   11&lt;br /&gt;
| XTE_J1906+090         &lt;br /&gt;
|  1316 &lt;br /&gt;
|           10&lt;br /&gt;
|   &lt;br /&gt;
|   43&lt;br /&gt;
| 1E_1145.1-6141        &lt;br /&gt;
|  1210 &lt;br /&gt;
|          8.5&lt;br /&gt;
|-&lt;br /&gt;
|   12&lt;br /&gt;
| H_1907+097            &lt;br /&gt;
|  1216 &lt;br /&gt;
|            5&lt;br /&gt;
|   &lt;br /&gt;
|   44&lt;br /&gt;
| H_1145-619            &lt;br /&gt;
|  1316 &lt;br /&gt;
|          3.1&lt;br /&gt;
|-&lt;br /&gt;
|   13&lt;br /&gt;
| 4U_1700+24            &lt;br /&gt;
|  1400 &lt;br /&gt;
|         0.42&lt;br /&gt;
|   &lt;br /&gt;
|   45&lt;br /&gt;
| GX_301-2              &lt;br /&gt;
|  1211 &lt;br /&gt;
|          4.1&lt;br /&gt;
|-&lt;br /&gt;
|   14&lt;br /&gt;
| IGR_J19294+1816       &lt;br /&gt;
|  1316 &lt;br /&gt;
|           ? &lt;br /&gt;
|   &lt;br /&gt;
|   46&lt;br /&gt;
| SMC_X-1               &lt;br /&gt;
|  1213 &lt;br /&gt;
|           60&lt;br /&gt;
|-&lt;br /&gt;
|   15&lt;br /&gt;
| Her_X-1               &lt;br /&gt;
|  1413 &lt;br /&gt;
|         6.56&lt;br /&gt;
|   &lt;br /&gt;
|   47&lt;br /&gt;
| 3A_1239-599           &lt;br /&gt;
|  1110 &lt;br /&gt;
|           ? &lt;br /&gt;
|-&lt;br /&gt;
|   16&lt;br /&gt;
| XTE_J1946+274         &lt;br /&gt;
|  1316 &lt;br /&gt;
|          9.5&lt;br /&gt;
|   &lt;br /&gt;
|   48&lt;br /&gt;
| RX_J0101.8-7223       &lt;br /&gt;
|  1310 &lt;br /&gt;
|           60&lt;br /&gt;
|-&lt;br /&gt;
|   17&lt;br /&gt;
| KS_1947+300           &lt;br /&gt;
|  1316 &lt;br /&gt;
|          9.5&lt;br /&gt;
|   &lt;br /&gt;
|   49&lt;br /&gt;
| GX_304-1              &lt;br /&gt;
|  1316 &lt;br /&gt;
|          2.4&lt;br /&gt;
|-&lt;br /&gt;
|   18&lt;br /&gt;
| 3A_1954+319           &lt;br /&gt;
|  1416 &lt;br /&gt;
|          1.7&lt;br /&gt;
|   &lt;br /&gt;
|   50&lt;br /&gt;
| SAX_J1324.4-6200      &lt;br /&gt;
|  1310 &lt;br /&gt;
|           10&lt;br /&gt;
|-&lt;br /&gt;
|   19&lt;br /&gt;
| EXO_2030+375          &lt;br /&gt;
|  1366 &lt;br /&gt;
|          7.1&lt;br /&gt;
|   &lt;br /&gt;
|   51&lt;br /&gt;
| H_1417-624            &lt;br /&gt;
|  1316 &lt;br /&gt;
|            6&lt;br /&gt;
|-&lt;br /&gt;
|   20&lt;br /&gt;
| GRO_J2058+42          &lt;br /&gt;
|  1316 &lt;br /&gt;
|          9.0&lt;br /&gt;
|   &lt;br /&gt;
|   52&lt;br /&gt;
| SAX_J1452.8-5949      &lt;br /&gt;
|  1010 &lt;br /&gt;
|            9&lt;br /&gt;
|-&lt;br /&gt;
|   21&lt;br /&gt;
| SAX_J2103.5+4545      &lt;br /&gt;
|  1366 &lt;br /&gt;
|          6.8&lt;br /&gt;
|   &lt;br /&gt;
|   53&lt;br /&gt;
| 4U_1626-67            &lt;br /&gt;
|  1410 &lt;br /&gt;
|          9.0&lt;br /&gt;
|-&lt;br /&gt;
|   22&lt;br /&gt;
| Cep_X-4               &lt;br /&gt;
|  1316 &lt;br /&gt;
|          3.8&lt;br /&gt;
|   &lt;br /&gt;
|   54&lt;br /&gt;
| H_1538-522            &lt;br /&gt;
|  1213 &lt;br /&gt;
|          6.4&lt;br /&gt;
|-&lt;br /&gt;
|   23&lt;br /&gt;
| 3A_2206+543           &lt;br /&gt;
|  1260 &lt;br /&gt;
|          2.6&lt;br /&gt;
|   &lt;br /&gt;
|   55&lt;br /&gt;
| SWIFT_J1626.6-5156    &lt;br /&gt;
|  1366 &lt;br /&gt;
|           ? &lt;br /&gt;
|-&lt;br /&gt;
|   24&lt;br /&gt;
| 3A_0114+650           &lt;br /&gt;
|  1213 &lt;br /&gt;
|         4.5 &lt;br /&gt;
|   &lt;br /&gt;
|   56&lt;br /&gt;
| AX J1700.1-4157       &lt;br /&gt;
|  9999 &lt;br /&gt;
|           ? &lt;br /&gt;
|-&lt;br /&gt;
|   25&lt;br /&gt;
| H_0115+634            &lt;br /&gt;
|  1386 &lt;br /&gt;
|            8&lt;br /&gt;
|   &lt;br /&gt;
|   57&lt;br /&gt;
| OAO_1657-415          &lt;br /&gt;
|  1213 &lt;br /&gt;
|          7.1&lt;br /&gt;
|-&lt;br /&gt;
|   26&lt;br /&gt;
| IGR_J01583+6713       &lt;br /&gt;
|  1316 &lt;br /&gt;
|            4&lt;br /&gt;
|   &lt;br /&gt;
|   58&lt;br /&gt;
| IGR_J16358-4726       &lt;br /&gt;
|  1110 &lt;br /&gt;
|            7&lt;br /&gt;
|-&lt;br /&gt;
|   27&lt;br /&gt;
| RX_J0146.9+6121       &lt;br /&gt;
|  1310 &lt;br /&gt;
|          2.3&lt;br /&gt;
|   &lt;br /&gt;
|   59&lt;br /&gt;
| IGR_J16393-4643       &lt;br /&gt;
|  1210 &lt;br /&gt;
|         10.6&lt;br /&gt;
|-&lt;br /&gt;
|   28&lt;br /&gt;
| V_0332+53             &lt;br /&gt;
|  1366 &lt;br /&gt;
|          7.5&lt;br /&gt;
|   &lt;br /&gt;
|   60&lt;br /&gt;
| IGR_J16194-2810       &lt;br /&gt;
|  1400 &lt;br /&gt;
|          3.7&lt;br /&gt;
|-&lt;br /&gt;
|   29&lt;br /&gt;
| RX_J0440.9+4431       &lt;br /&gt;
|  1310 &lt;br /&gt;
|          3.3&lt;br /&gt;
|   &lt;br /&gt;
|   61&lt;br /&gt;
| SAX_J1808.4-3658      &lt;br /&gt;
|  1416 &lt;br /&gt;
|          3.6&lt;br /&gt;
|-&lt;br /&gt;
|   30&lt;br /&gt;
| X_Per                 &lt;br /&gt;
|  1310 &lt;br /&gt;
|          0.7&lt;br /&gt;
|   &lt;br /&gt;
|   62&lt;br /&gt;
| 3A_1822-371           &lt;br /&gt;
|  1419 &lt;br /&gt;
|          2.5&lt;br /&gt;
|-&lt;br /&gt;
|   31&lt;br /&gt;
| 1A_0535+262           &lt;br /&gt;
|  1366 &lt;br /&gt;
|            2&lt;br /&gt;
|   &lt;br /&gt;
|   63&lt;br /&gt;
| AX_J1740.2-2903       &lt;br /&gt;
|  1410 &lt;br /&gt;
|           ?&lt;br /&gt;
|-&lt;br /&gt;
|   32&lt;br /&gt;
| SAX_J0635.2+0533      &lt;br /&gt;
|  1310 &lt;br /&gt;
|            5&lt;br /&gt;
|   &lt;br /&gt;
|     &lt;br /&gt;
|                       &lt;br /&gt;
|       &lt;br /&gt;
|             &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Gaia Distances =&lt;br /&gt;
'''NOTE: The distances here are for the Gaia source that is ''closest'' to the SIMBAD position for each object. This means that for objects with poorly-determined positions or no identified optical counterpart, the distance is ''INCREDIBLY SUSPECT''.''' Until someone has time to go through source-by-source and clean this up, ''you'' need to check carefully whether the ''Gaia'' source ID listed here ''actually corresponds'' to the object you are looking at.&lt;br /&gt;
The parallaxes are converted to distance by Bailer-Jones et al. (see [https://ui.adsabs.harvard.edu/#abs/2018arXiv180410121B/abstract this paper] and [http://www.mpia.de/homes/calj/gdr2_distances/main.html this webpage]). Again, these should be taken with a hefty grain of salt and are dependent on the priors selected by Bailer-Jones et al.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Source&lt;br /&gt;
! Gaia source ID&lt;br /&gt;
! Gaia distance&lt;br /&gt;
|-&lt;br /&gt;
| [[RX J0101.8-7223]] || 4687492917085083648 || 12.3 (+2.0, -1.7)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[3A 0114+650]] || 524924310153249920 || 6.6 (+1.6, -1.2)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 0115+634]] || 524677469790488960 || 7.2 (+1.5, -1.1)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[RX J0146.9+6121]] || 511220031584305536 || 2.50 (+0.22, -0.19)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J01583+6713]] || 518990967445248256 || 7.4 (+1.1, -0.9)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[Swift J0243.6+6124]] || 465628193526364416 || 6.9 (+1.6, -1.2)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[V 0332+53]] || 444752973131169664 || 5.1 (+1.1, -0.8)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[X Per]] || 168450545792009600 || 0.79 +/- 0.04&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[RX J0440.9+4431]] || 252878401557369088 || 3.2 (+0.7, -0.5)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[1A 0535+26]] || 3441207615229815040 || 2.13 (+0.26, -0.21)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[SAX J0635.2+0533]] || 3131755943105291136 || 1.6 (+2.2, -0.8)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[MXB 0656-07]] || 3052677318793446016 || 5.1 (+1.4, -1.0)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[3A 0726-260]] || 5613494119544761088 || 9.5 (+3.1, -2.2)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[RX J0812.4-3114]] || 5548261400354128768 || 6.8 (+1.2, -1.0)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[GS 0834-430]] || 5523448270462666880 || 5.5 (+2.5, -1.7)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[Vela X-1]] || 5620657678322625920 || 2.42 (+0.19, -0.17)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1036-56]] || 5352018121173519488 || 5.0 (+1.1, -0.8)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[1A 1118-616]] || 5336957010898124160 || 2.93 (+0.26, -0.22)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[Cen X-3]] || 5337498593446516480 || 6.4 (+1.4, -1.1)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[1E1145.1-6141]] || 5334851450481641088 || 9.1 (+2.2, -1.6)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1145-619]] || 5334823859608495104 || 2.23 (+0.20, -0.17)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[GX 301-2]] || 6054569565614460800 || 3.5 (+0.6, -0.5)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[3A 1239-599]] || 6056606788861734912 || 2.9 (+2.4, -1.3)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[GX 304-1]] || 5863533199843070208 || 2.01 (+0.15, -0.13)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[SAX J1324.4-6200]] || 5868517973240268544 || 3.5 (+2.6, -1.7)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[2S 1417-624]] || 5854175187681966464 || 3.8 (+2.8, -1.8)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[SAX J1452.8-5949]] || 5878224015202026240 || 3.0 (+2.6, -1.5)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1538-522]] || 5886085557746480000 || 6.6 (+2.2, -1.5)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[2S 1553-542]] || 5884711610550541440 || 3.5 (+2.6, -1.5)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J16194-2810]] || 6039227323926220544 || 2.3 (+0.8, -0.5)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[Swift J1626.6-5156]] || 5933976985766949376 || 9.8 (+3.2, -2.4)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J16318-4848]] || 5940777877435137024 || 5.2 (+2.8, -1.9)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J16320-4751]] || 5941216101526297856 || 1.3 (+0.6, -0.4)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1626-67]] || 5809528276749789312 || 3.5 (+2.3, -1.3)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J16393-4643]] || 5942638074996489088 || 4.0 (+2.7, -1.7)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J16465-4507]] || 5943246345430928512 || 2.7 (+0.5, -0.4)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[Her X-1]] || 1338822021487330304 || 5.0 (+0.8, -0.6)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[AX J1700.1-4157]] || 5966358530819164544 || 3.4 (+2.6, -1.5)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[OAO 1657-415]] || 5966391894137386240 || 2.2 (+0.7, -0.5)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1700-37]] || 5976382915813535232 || 1.75 (+0.24, -0.19)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1700+24]] || 4571810378118789760 || 0.536 +/- 0.010&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[EXO 1722-363]] || 5974546387756541696 || 4.0 (+2.3, -1.3)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[GX 1+4]] || 4110236324513030656 || 7.6 (+4.3, -2.8)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[2XMM J174016.0-290337]] || 4060143669944331648 || 1.4 (+1.6, -0.5)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[GRO J1744-28]] || 4057539171718068224 || 1.3 (+1.2, -0.5)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J17544-2619]] || 4063908810076415872 || 2.7 (+0.5, -0.4)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[SAX J1802.7-2017]] || 4070968778552176768 || 1.5 (+2.8, -0.7)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[SAX J1808.4-3658]] || 4037867740522970240 || 5.1 (+4.3, -2.6)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[Swift J1816.7-1613]] || 4097679145798118528 || 1.4 (+2.5, -0.7)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[3A 1822-371]] || 6728016172687965568 || 6.1 (+2.7, -1.6)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[GS 1843+00]] || 4278536022438800640 || 2.3 (+2.0, -1.0)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[XTE J1855-026]] || 4255891924062617088 || 8.1 (+2.6, -1.8)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[XTE J1858+034]] || 4280844623194795136 || 1.55 (+0.28, -0.21)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[XTE J1859+083]] || 4310118600596712832 || 2.7 (+2.4, -1.5)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1901+03]] || 4268774665587135488 || 2.2 (+2.2, -1.3)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[XTE J1906+090]] || 4310649149314811776 || 2.8 (+2.4, -1.4)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1907+09]] || 4309225217336729088 || 4.4 (+2.1, -1.3)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1909+07]] || 4306419980916246656 || 2.6 (+2.3, -1.4)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J19140+0951]] || 4309253392325650176 || 2.8 (+2.4, -1.4)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J19149+1036]] || 4309736146639732352 || 3.0 (+2.5, -1.6)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J19294+1816]] || 4323316622779495680 || 2.9 (+2.5, -1.5)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[XTE J1946+274]] || 2028089540103670144 || 12.6 (+3.9, -2.9)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[KS 1947+300]] || 2031939548802102656 || 15.2 (+3.7, -2.8)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[3A 1954+319]] || 2034031438383765760 || 3.3 (+1.0, -0.7)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[EXO 2030+375]] || 2063791369815322752 || 3.6 (+1.4, -0.9)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[GRO J2058+42]] || 2065653598916388352 || 8.0 (+1.2, -1.0)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[SAX J2103.5+4545]] || 2162805896614571904 || 6.4 (+0.9, -0.7)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J21343+4738]] || 1978365123143522176 || 7.8 (+1.4, -1.1)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[Cep X-4]] || 2178178409188167296 || 10.2 (+2.2, -1.6)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 2206+54]] || 2005653524280214400 || 3.3 +/- 0.4&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[SAX J2239.3+6116]] || 2201091578667140352 || 8.0 (+1.4, -1.1)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J22534+6243]] || 2207277877757956352 || 8.1 (+2.3, -1.6)&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Updated list of accreting X-ray pulsars (pulse profile extractions) =&lt;br /&gt;
&lt;br /&gt;
This is a list to organize a library of pulse profiles for many of the known accreting X-ray pulsars. For this we scanned the NuSTAR archive at [https://heasarc.gsfc.nasa.gov/docs/archive.html Heasarc] for all objects that are listed in the two [http://astro.uni-tuebingen.de/~xrbcat/ XRB catalogues]. All public obsids are downloaded to `/userdata/data/stierhof/pp-class/&amp;lt;object_name&amp;gt;/&amp;lt;obsid&amp;gt;`. This is more than 350 observations! After reprocessing (this creates a folder `reprocessed` in each obsid folder) the region files have to be created. Right now we are not interested in detailed analysis and for bright outbursts the region choice is not that important. If you want to contribute, please create '''one''' region file for the source and '''one''' for the background. The source should be a circle centered around the brightest part of the image. The background should be an annulus with inner radius as large as the source region, and the outer as large as possible. The source and background region files should be stored in the `reprocessed` folder as `src.reg` and `bkg.reg`. '''Note:''' The regions must be valid for both detector modules!&lt;br /&gt;
&lt;br /&gt;
Once the region files are created it is straight forward to automatically extract all dataset. So please don't change anything else in the folder just yet. You can check the table if the data has been prepared (that is, if the `reprocessed` folder exists) and add the region files. If you do, please indicate it in the corresponding line in the table (searching for the source name should be helpful here).&lt;br /&gt;
&lt;br /&gt;
Once we have all region files collected we can extract the pulse profiles!&lt;br /&gt;
&lt;br /&gt;
==== Notes: ====&lt;br /&gt;
&lt;br /&gt;
If no _cl.fits files are present in the reprocessed folder, this either means that the preparation failed, or that the observation was not done in science mode. In the latter case we ignore the observations for now.&lt;br /&gt;
&lt;br /&gt;
{| class=wikitable&lt;br /&gt;
! Source&lt;br /&gt;
! Class&lt;br /&gt;
! Assignee&lt;br /&gt;
! Pulse Period&lt;br /&gt;
! Has Region&lt;br /&gt;
! Is Prepared&lt;br /&gt;
! Is Processed&lt;br /&gt;
|-&lt;br /&gt;
| [[1A 0535+262]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Vicente&lt;br /&gt;
| 103.47&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[1E 1145.1-6141]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Vicente&lt;br /&gt;
| 298.0&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[2RXP J130159.6-635806]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Vicente&lt;br /&gt;
| 643.0&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[2S 0114+650]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 10008.0&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[2S 1417-624]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Vicente&lt;br /&gt;
| 17.6&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[2S 1553-542]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Vicente&lt;br /&gt;
| 9.28&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[2S 1845-024]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Vicente&lt;br /&gt;
| 94.72&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[3A 1822-371]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| Vicente&lt;br /&gt;
| 0.59&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[3U 1223-62]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Nico&lt;br /&gt;
| 696.0&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[3U 1258-61]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Vicente&lt;br /&gt;
| 272.0&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[4U 0115+63]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 3.61&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[4U 0352+309]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Aafia&lt;br /&gt;
| 837.67&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[4U 0614+09]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.0020964360587002098&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[4U 1538-52]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Aafia&lt;br /&gt;
| 526.42&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[4U 1608-52]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| Vicente&lt;br /&gt;
| 0.0016&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[4U 1626-67]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 7.7&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[4U 1636-536]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.001721&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[4U 1702-429]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.00303&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[4U 1728-34]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.0027548209366391185&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[4U 1901+03]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 2.76&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[4U 1907+09]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Aafia&lt;br /&gt;
| 438.0&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[4U 1909+07]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Aafia&lt;br /&gt;
| 603.6&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[4U 1915-05]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.0037&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[4U 1954+31]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 19400.0&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[4U 2206+54]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 5555.0&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[Aql X-1]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.00182&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[BSD 24-491]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 202.5&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[CXOGlb J174852.7-202124]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.004857&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[Cen X-3]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Vicente&lt;br /&gt;
| 4.8&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[Cep X-4]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 65.35&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[EXO 0748-676]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.0019157088122605363&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[EXO 2030+375]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 41.31&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[GRO J1008-57]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Aafia&lt;br /&gt;
| 93.5&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[GRO J1744-28]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.467&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[GRO J1750-27]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Vicente&lt;br /&gt;
| 4.45&lt;br /&gt;
| X (weird bkg)&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[GRO J2058+42]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 195.25&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[GRS 1741.9-2853]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.001697792869269949&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[GX 1+4]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| Vicente&lt;br /&gt;
| 138.17&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[Ginga 0834-430]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 12.3&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[HD 110432]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 14200.0&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[HD 77581]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 283.0&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[Her X-1]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 1.24&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J00291+5934]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.00167&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J06074+2205]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 373.2&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J11215-5952]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 186.8&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J16320-4751]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 1308.8&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J16358-4726]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 5880.0&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J16393-4643]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Aafia&lt;br /&gt;
| 908.79&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J16418-4532]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Aafia&lt;br /&gt;
| 1246.0&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J16493-4348]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 1093.1&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J16597-3704]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.00951&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J17062-6143]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| Vicente&lt;br /&gt;
| 0.00611&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J17329-2731]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 6680.0&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J17379-3747]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| Vicente&lt;br /&gt;
| 0.002136&lt;br /&gt;
| X (obs2 source?)&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J17480-2446]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.09054&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J17494-3030]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.002659219644588837&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J17498-2921]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.002494&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J17511-3057]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.00408&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J17544-2619]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 71.49&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J17591-2342]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.001897&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J18027-2016]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 139.6&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J18219-1347]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 52.46&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J18245-2452]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.00393&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J19294+1816]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 12.44&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J21343+4738]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 322.7&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[KS 1947+300]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 18.7&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[MAXI J0655-013]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 1129.1&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[MAXI J0903-531]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 14.05&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[MAXI J0911-655]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.00294&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[MAXI J1409-619]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 503.0&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[MAXI J1816-195]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.0018917896329928112&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[MXB 0656-072]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Nico&lt;br /&gt;
| 160.7&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[MXB 1659-29]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.00176&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[MXB 1730-335]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.0032679738562091504&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[OAO 1657-415]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Vicente&lt;br /&gt;
| 37.03&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[PSR B1259-63]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.05&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[PSR J1023+0038]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.001687&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[PSR J1723-2837]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.00186219739292365&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[SAX J1324.4-6200]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 172.84&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[SAX J1748.9-2021]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.00226&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[SAX J1808.4-3658]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.00249&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[SAX J2103.5+4545]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 358.61&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[SGR 0755-2933]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 308.0&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[SRGA J124404.1-632232]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Aafia&lt;br /&gt;
| 538.7&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[SRGE J204319.0+443820]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 741.8&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[SWIFT J1749.4-2807]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.00193&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[SWIFT J1756.9-2508]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.005493&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[SWIFT J1843.5-0343]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 42.5&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[Sct X-1]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 112.0&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[Swift J0243.6+6124]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 9.87&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[Swift J0840.7-3516]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 8.96&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[Swift J1626.6-5156]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 15.36&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[Swift J1816.7-1613]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Nico&lt;br /&gt;
| 143.69&lt;br /&gt;
| X (weird bkg)&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[V0332+53]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 4.4&lt;br /&gt;
| X &lt;br /&gt;
| X (some crashed)&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[XMM J174457-2850.3]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 5.2521&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[XSS J12270-4859]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.001686&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[XTE J1739-285]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.00258732212160414&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[XTE J1748-361]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.0018867924528301887&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[XTE J1829-098]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 7.85&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[XTE J1858+034]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 221.0&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[XTE J1859+083]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 9.79&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[XTE J1946+274]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 15.8&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Correlation between luminosity and CRSF energy =&lt;br /&gt;
In recent years more and more sources have been observed at different luminosities, allowing us to find correlation between the luminosity and the cyclotron line energy. A summary of the current state of the observations can be found on this page:&lt;br /&gt;
[[CRSF energy as function of luminosity]]&lt;br /&gt;
&lt;br /&gt;
= Assignments =&lt;br /&gt;
Our collaboration has assigned one or two sources to each member to take care of, i.e., to put together the most important information and keep the page up to date in case new data are available or new papers are published. [[X-ray pulsar assignments|The list]] can only be accessed if logged in.&lt;/div&gt;</summary>
		<author><name>Thalhammer</name></author>
	</entry>
	<entry>
		<id>https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=List_of_accreting_X-ray_pulsars&amp;diff=3147</id>
		<title>List of accreting X-ray pulsars</title>
		<link rel="alternate" type="text/html" href="https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=List_of_accreting_X-ray_pulsars&amp;diff=3147"/>
		<updated>2023-12-01T15:57:30Z</updated>

		<summary type="html">&lt;p&gt;Thalhammer: /* Notes: */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Accreting X-ray Pulsars]]&lt;br /&gt;
&lt;br /&gt;
= List of accreting X-ray pulsars =&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
! Source&lt;br /&gt;
! RA&lt;br /&gt;
! Dec&lt;br /&gt;
! l&lt;br /&gt;
! b&lt;br /&gt;
! Pspin (s)&lt;br /&gt;
! Porbit (d)&lt;br /&gt;
! Type&lt;br /&gt;
! CRSF?&lt;br /&gt;
! Persistent?&lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| [[CXOU J005047.9-731817]] || 12.699963 || -73.305018 || 302.995436 || -43.823153 || 292 ||   || [[List of Be X-ray Binaries|BeXRB]]? ||   || T || aka SXP 292&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[RX J0059.2-7138]] || 14.803112 || -71.645828 || 302.059336 || -45.469247 || 2.76 || 82? || [[List of Be X-ray Binaries|BeXRB]]? || [[List of cyclotron line sources|C]]? || T || aka SXP 2.76&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[RX J0101.8-7223]] || 15.467910 || -72.392796 || 301.821935 || -44.712961 || 175 ||   || [[List of Be X-ray Binaries|BeXRB]] ||   || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[SMC X-1]] || 19.271456 || -73.443343 || 300.414946 || -43.559342 || 0.71 || 3.892 || SG ||   || P || eclipsing&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[3A 0114+650]] || 19.511228 || 65.291623 || 125.709976 || 2.563488 || 9828 || 11.6 || SG ||   || P || 30.7 d superorbital modulation&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 0115+634]] || 19.633194 || 63.742522 || 125.923515 || 1.028265 || 3.6 || 24.3 || [[List of Be X-ray Binaries|BeXRB]] || [[List of cyclotron line sources|C]] || T || 5 or more lines&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[SXP 265]] || 23.214439 || -74.429258 || 299.185905 || -42.396387 || 264.52 || ~146 || [[List of Be X-ray Binaries|BeXRB]] ||   || PT || SMC region, persistent low luminosity, one type I outburst&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[RX J0146.9+6121]] || 26.750876 || 61.356573 || 129.541104 || -0.800112 || 1412 || 330? || [[List of Be X-ray Binaries|BeXRB]] ||   || T || aka V* V831 Cas&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J01583+6713]] || 29.577033 || 67.223185 || 129.352236 || 5.188723 || 469? ||   || [[List of Be X-ray Binaries|BeXRB]] || [[List of cyclotron line sources|C]]? || T || controversial claim of CRSF features&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[Swift J0243.6+6124]] || 40.918432 || 61.434378 || 135.934157 || 1.428788 || 9.86 || 27.587 || [[List of Be X-ray Binaries|BeXRB]] ||   || T || Galactic ULX?&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[V 0332+53]] || 53.749630 || 53.173140 || 146.052090 || -2.194026 || 4.37 || 34.25 || [[List of Be X-ray Binaries|BeXRB]] || [[List of cyclotron line sources|C]] || T || multiple lines&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[X Per]] || 58.846151 || 31.045836 || 163.081353 || -17.136203 || 830 || 250.3 || [[List of Be X-ray Binaries|BeXRB]] || [[List of cyclotron line sources|C]]? || P || magnetar?&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[RX J0440.9+4431]] || 70.247207 || 44.530344 || 159.847095 || -1.270023 || 203 || 155 || [[List of Be X-ray Binaries|BeXRB]] ||   || P || aka LS V+44 17, persistent, but with outbursts&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[LXP 169]] || 76.981153 || -68.418135 || 279.245167 || -34.534204 || 168.8 || 24.3 || [[List of Be X-ray Binaries|BeXRB]] ||   || T? || NS eclipsing companion&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[Swift J053041.9-665426]] || 82.675788 || -66.907566 || 276.997292 || -32.675902 || 28.78 ||   || [[List of Be X-ray Binaries|BeXRB]] ||   || T? ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[LMC X-4]] || 83.206501 || -66.370332 || 276.334942 || -32.529084 || 13.5 || 1.4 || SG ||   || P || superorbital variation ~30 d&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[1A 0535+26]] || 84.727393 || 26.315776 || 181.445049 || -2.643537 || 103 || 111.1 || [[List of Be X-ray Binaries|BeXRB]] || [[List of cyclotron line sources|C]] || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[SAX J0635.2+0533]] || 98.822528 || 5.553870 || 206.149196 || -1.044562 || 0.0338 ||   || [[List of Be X-ray Binaries|BeXRB]] ||   || T || low luminosity&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[MXB 0656-07]] || 104.572030 || -7.209774 || 220.128540 || -1.767278 || 160.4 || 101.2 || [[List of Be X-ray Binaries|BeXRB]] || [[List of cyclotron line sources|C]] ||   || aka XTE J0658-073&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[3A 0726-260]] || 112.223241 || -26.108019 || 240.281581 || -4.050430 || 103.2 || 34.5 || [[List of Be X-ray Binaries|BeXRB]] ||   || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[RX J0812.4-3114]] || 123.118149 || -31.247807 || 249.578200 || 1.542815 || 31.9 || 80 || [[List of Be X-ray Binaries|BeXRB]] ||   || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[GS 0834-430]] || 128.981072 || -43.185598 || 262.020238 || -1.509977 || 12.3 || 105.8 || [[List of Be X-ray Binaries|BeXRB]] ||   || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[Vela X-1]] || 135.528560 || -40.554654 || 263.058248 || 3.929864 || 283 || 8.96 || SG || [[List of cyclotron line sources|C]] || P || eclipsing&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[GRO J1008-57]] || 152.439620 || -58.292035 || 282.996761 || -1.822544 || 93.7 || 249.48 || [[List of Be X-ray Binaries|BeXRB]] || [[List of cyclotron line sources|C]]? || T || outbursts predicted precisely&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1036-56]] || 159.397094 || -56.798840 || 285.352684 || 1.433482 || 862 ||   || [[List of Be X-ray Binaries|BeXRB]] ||   || P? || aka RX J1037.5-564/LS 1698&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[1A 1118-616]] || 170.238174 || -61.916707 || 292.498528 || -0.891807 || 407 || 24? || [[List of Be X-ray Binaries|BeXRB]] || [[List of cyclotron line sources|C]] || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[Cen X-3]] || 170.312856 || -60.623776 || 292.090328 || 0.335524 || 4.8 || 2.09 || SG || [[List of cyclotron line sources|C]] || P || disk-fed HMXB&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[1E1145.1-6141]] || 176.868942 || -61.953720 || 295.489729 || -0.009704 || 297 || 14.4 || SG ||   ||   || (V* V830 Cen) varying luminosity states&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1145-619]] || 177.000032 || -62.206910 || 295.611079 || -0.240241 || 292 || 187.5 || [[List of Be X-ray Binaries|BeXRB]] ||   || PT ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[GX 301-2]] || 186.656453 || -62.770359 || 300.098061 || -0.035212 || 686 || 41.5 || SG || [[List of cyclotron line sources|C]] || P || very massive companion, strong orbital variability&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[3A 1239-599]] || 190.508997 || -60.200951 || 301.762822 || 2.649455 || 191 ||   ||   ||   ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[GX 304-1]] || 195.321198 || -61.601845 || 304.102702 || 1.247519 || 272 || 132.2 || [[List of Be X-ray Binaries|BeXRB]] || [[List of cyclotron line sources|C]] || T || Strong spectral parameter variations&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[SAX J1324.4-6200]] || 201.108853 || -62.016515 || 306.792444 || 0.607646 || 171 || 22 || [[List of Be X-ray Binaries|BeXRB]]? ||   ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[2S 1417-624]] || 215.303896 || -62.698168 || 313.021369 || -1.598347 || 17.6 || 42.12 || [[List of Be X-ray Binaries|BeXRB]] ||   || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[SAX J1452.8-5949]] || 223.207002 || -59.820983 || 317.646019 || -0.463151 || 437 ||   || [[List of Be X-ray Binaries|BeXRB]]? ||   ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1538-522]] || 235.597300 || -52.386011 || 327.419660 || 2.163700 || 530 || 3.7 || SG || [[List of cyclotron line sources|C]] || P ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[2S 1553-542]] || 239.452345 || -54.416113 || 327.942599 || -0.857197 || 9.3 || 29.56 || [[List of Be X-ray Binaries|BeXRB]]? ||   || P || Occasional outbursts&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J16194-2810]] || 244.888926 || -28.127773 || 349.119337 || 15.541316 ||   ||   || [[List of symbiotic X-ray binaries|SyXB]] ||   ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[Swift J1626.6-5156]] || 246.652146 || -51.941848 || 332.780988 || -2.002708 || 15.4 || 132.9 || [[List of Be X-ray Binaries|BeXRB]] || [[List of cyclotron line sources|C]] || T || strong flares&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J16318-4848]] || 247.951259 || -48.816876 || 335.615970 || -0.447754 ||   ||   || SG ||   || P || super absorbed source&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J16320-4751]] || 248.009669 || -47.874785 || 336.330340 || 0.167654 || 1309 || 8.986 || SG ||   || P || aka 2FGL J1632.4-4753c&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1626-67]] || 248.069509 || -67.461207 || 321.788013 || -13.091773 || 7.67 || 0.029 || UCXB || [[List of cyclotron line sources|C]] || P || Torque reversals; only UCXB with CRSF.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J16358-4726]] || 249.124997 || -47.623903 || 337.023067 || -0.213710 || 5880 ||   || [[List of symbiotic X-ray binaries|SyXB]] ||   ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J16393-4643]] || 249.772382 || -46.704006 || 338.001098 || 0.075060 || 912 || 3.7 || [[List of symbiotic X-ray binaries|SyXB]] ||   ||   || aka AX J1639.0-4642&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J16465-4507]] || 251.646902 || -45.117960 || 340.053530 || 0.135029 || 228 || 30.243 ||   ||   || P || aka 2MASS J16463526-4507045&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[Her X-1]] || 254.457539 || 35.342324 || 58.148987 || 37.523034 || 1.24 || 1.7 || IM || [[List of cyclotron line sources|C]] || P ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[AX J1700.1-4157]] || 255.018132 || -41.968217 || 344.037996 || 0.235782 || 715 ||   || [[List of Be X-ray Binaries|BeXRB]]? ||   ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[OAO 1657-415]] || 255.202665 || -41.654882 || 344.369539 || 0.320505 || 37.7 || 10.4 || SG || [[List of cyclotron line sources|C]]? || P || eclipsing&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1700-37]] || 255.986566 || -37.844121 || 347.754446 || 2.173492 ||   || 3.4 || SG ||   || P || No pulsations; eclipsing source&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1700+24]] || 256.643762 || 23.971820 || 45.151698 || 32.990711 || 404 ||   || [[List of symbiotic X-ray binaries|SyXB]] ||   ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[EXO 1722-363]] || 261.296681 || -36.284621 || 351.495256 || -0.354515 || ~414 || 9.74 || HMXB ||   ||   || aka IGR J17252–3616, heavily absorbed, eclipsing&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[GX 1+4]] || 263.008955 || -24.745600 || 1.937022 || 4.794969 || 170 || 1161 || [[List of symbiotic X-ray binaries|SyXB]] ||   || P || Pspin evolving rapidly&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[2XMM J174016.0-290337]] || 265.067079 || -29.060569 || 359.278793 || 0.929892 || 626 ||   || [[List of symbiotic X-ray binaries|SyXB]] ||   ||   || a. k.a. AX_J1740.2-2903&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[GRO J1744-28]] || 266.139419 || -28.744480 || 0.042075 || 0.298489 || 0.47 || 11.8 || LMXB ||   || T || &amp;quot;Bursting Pulsar&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[GRO J1750-27]] || 267.291434 || -26.639700 || 2.370662 || 0.518408 || 4.45 || 29.82 || [[List of Be X-ray Binaries|BeXRB]]? ||   || P || aka AX J1749.1-2639&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J17544-2619]] || 268.605299 || -26.331274 || 3.235980 || -0.335557 ||   || 4.93 || SFXT? || [[List of cyclotron line sources|C]] || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[SAX J1802.7-2017]] || 270.665728 || -20.286816 || 9.417461 || 1.044121 || 139.6 || 4.57 || SG ||   || P || aka IGR J18027-2016&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[1RXS J180431.1-273932]] || 271.130284 || -27.659214 || 3.202710 || -2.947774 || 494 ||   || [[List of symbiotic X-ray binaries|SyXB]] ||   ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[SAX J1808.4-3658]] || 272.114166 || -36.979379 || 355.384418 || -8.148034 || 0.0025 || 0.837 || LMXB ||   ||   || aka V* V4580 Sgr, disk accretor(?)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[Swift J1816.7-1613]] || 274.176846 || -16.222949 || 14.587018 || 0.092428 || 142.9 || 151? || [[List of Be X-ray Binaries|BeXRB]]? ||   || T || [http://www.astronomerstelegram.org/?read=6253 ATel 6253] [http://www.astronomerstelegram.org/?read=1457 ATel 1457]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J18179-1621]] || 274.467048 || -16.359400 || 14.599162 || -0.217510 || 11.82 ||   ||   || [[List of cyclotron line sources|C]]? || T || [http://www.astronomerstelegram.org/?read=1457 ATel 3947] [http://www.astronomerstelegram.org/?read=3949 ATel 3949]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[AX J1820.5-1434]] || 275.122921 || -14.571809 || 16.473200 || 0.070620 || 152 ||   ||   ||   ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[3A 1822-371]] || 276.445028 || -37.105158 || 356.850238 || -11.290768 || 0.59 || 0.23 || LMXB ||   ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[Sct X-1]] || 278.857602 || -7.614004 || 24.336027 || 0.065699 || 112 || 111 || [[List of symbiotic X-ray binaries|SyXB]] ||   ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[GS 1843+00]] || 281.403474 || 0.863160 || 33.036370 || 1.689359 ||   ||   ||   ||   || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[2S 1845-024]] || 282.075590 || -2.419729 || 30.421052 || -0.406023 || 94.8 || 242.2 || [[List of Be X-ray Binaries|BeXRB]]? ||   || T || aka GS 1843-02&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[XTE J1855-026]] || 283.876680 || -2.604678 || 31.076348 || -2.092060 || 361 || 6.1 || SG ||   ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[XTE J1858+034]] || 284.678379 || 3.439739 || 36.822153 || -0.048088 ||   || 221 ||   ||   || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[XTE J1859+083]] || 284.778177 || 8.246352 || 41.144826 || 2.058031 || 9.8 ||   ||   ||   || T || [http://www.astronomerstelegram.org/?read=7037 ATel 7037]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1901+03]] || 285.903524 || 3.190426 || 37.159966 || -1.249760 ||   ||   ||   ||   || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[XTE J1906+090]] || 286.197769 || 9.044912 || 42.497189 || 1.174872 || 89.2 ||   || [[List of Be X-ray Binaries|BeXRB]]? ||   ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1907+09]] || 287.408533 || 9.829777 || 43.743566 || 0.475292 || 441 || 8.37 || SG || [[List of cyclotron line sources|C]] || P ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1909+07]] || 287.700872 || 7.597657 || 41.896991 || -0.811637 || 604 || 4.4 || SG ||   || P ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J19140+0951]] || 288.517606 || 9.882865 || 44.296348 || -0.468771 ||   || 13.55 || HMXB ||   || ? ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J19149+1036]] || 288.728311 || 10.612245 || 45.038573 || -0.313490 ||   || 22.25 || SG || [[List of cyclotron line sources|C]] || P || very close to GRS1915&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J19294+1816]] || 292.482927 || 18.310607 || 53.540075 || 0.115022 || 12.5 || 116? || [[List of Be X-ray Binaries|BeXRB]]? ||   || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[XTE J1946+274]] || 296.413975 || 27.365400 || 63.207144 || 1.395565 || 15.8 || 169.2 || [[List of Be X-ray Binaries|BeXRB]] || [[List of cyclotron line sources|C]] || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[KS 1947+300]] || 297.397839 || 30.208809 || 66.098966 || 2.083585 || 18.8 || 40.4 || [[List of Be X-ray Binaries|BeXRB]] || [[List of cyclotron line sources|C]] || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[3A 1954+319]] || 298.926399 || 32.096931 || 68.391941 || 1.926894 || 1.91e4 ||   || [[List of symbiotic X-ray binaries|SyXB]] ||   ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[EXO 2030+375]] || 308.063627 || 37.637433 || 77.151841 || -1.241801 || 41.8 || 46.03 || [[List of Be X-ray Binaries|BeXRB]] ||   || T || regular outbursts&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[GRO J2058+42]] || 314.698059 || 41.776980 || 83.569877 || -2.655492 ||   ||   ||   ||   || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[SAX J2103.5+4545]] || 315.898770 || 45.751533 || 87.130252 || -0.684802 || 359 || 12.7 || [[List of Be X-ray Binaries|BeXRB]] ||   || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J21343+4738]] || 323.584869 || 47.633380 || 92.171608 || -3.117683 || 320.35 || 20.85 || [[List of Be X-ray Binaries|BeXRB]] ||   || P? || Varying levels of activity&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[Cep X-4]] || 324.877853 || 56.986219 || 99.012209 || 3.312526 || 66.32 || 20.85 || [[List of Be X-ray Binaries|BeXRB]] || [[List of cyclotron line sources|C]] || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 2206+54]] || 331.984289 || 54.518433 || 100.603243 || -1.105922 || 5560 || 19.25? || SG ||   || P || magnetar?&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[SAX J2239.3+6116]] || 339.836831 || 61.274053 || 107.734431 || 2.362332 || 1247 || 262? || [[List of Be X-ray Binaries|BeXRB]] ||   || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J22534+6243]] || 343.479672 || 62.726882 || 109.923864 || 2.861557 || 46.7 ||   || [[List of Be X-ray Binaries|BeXRB]]? ||   || P? ||  &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Location in the Galaxy =&lt;br /&gt;
&lt;br /&gt;
The figure below displays the position of accreting X-ray pulsars in the Galaxy as far as known at this moment. Click on the figure for a larger version. Labels indicate the ordinal number in the first column of the table. Uncertainties in the distances are not indicated. Empty symbols represent sources for which there is no distance info in the literature; they have been artificially set to a distance of 7.6 kpc. [http://heasarc.gsfc.nasa.gov/W3Browse/catalog/class.html HEASARC source class identifiers] are also given. The spiral arms are from Vallée et al. (2008)&amp;lt;ref name=&amp;quot;Vallee08&amp;quot; /&amp;gt;. Figure and data provided by Arash Bodaghee, SSL, UC Berkeley.&lt;br /&gt;
&lt;br /&gt;
[[File:galacticdistributionxrp.png|560px|Galactic distribution of accreting X-ray pulsars.]]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! #&lt;br /&gt;
! Source                &lt;br /&gt;
! Class &lt;br /&gt;
! Dist. [kpc]&lt;br /&gt;
!   &lt;br /&gt;
! # &lt;br /&gt;
! Source                &lt;br /&gt;
! Class &lt;br /&gt;
! Dist. [kpc]&lt;br /&gt;
|-&lt;br /&gt;
|    1&lt;br /&gt;
| GRO_J1744-28          &lt;br /&gt;
|  1490 &lt;br /&gt;
|          8.5&lt;br /&gt;
|     &lt;br /&gt;
|   33&lt;br /&gt;
| 3A_0656-072           &lt;br /&gt;
|  1316 &lt;br /&gt;
|          3.9&lt;br /&gt;
|-&lt;br /&gt;
|    2&lt;br /&gt;
| GX_1+4                &lt;br /&gt;
|  1410 &lt;br /&gt;
|          4.5&lt;br /&gt;
|   &lt;br /&gt;
|   34&lt;br /&gt;
| 3A_0726-260           &lt;br /&gt;
|  1310 &lt;br /&gt;
|          6.1&lt;br /&gt;
|-&lt;br /&gt;
|    3&lt;br /&gt;
| GRO_J1750-27          &lt;br /&gt;
|  1316 &lt;br /&gt;
|           ? &lt;br /&gt;
|   &lt;br /&gt;
|   35&lt;br /&gt;
| RX_J0812.4-3114       &lt;br /&gt;
|  1316 &lt;br /&gt;
|          8.8&lt;br /&gt;
|-&lt;br /&gt;
|    4&lt;br /&gt;
| 1RXS_J180431.1-273932 &lt;br /&gt;
|  1410 &lt;br /&gt;
|           ? &lt;br /&gt;
|   &lt;br /&gt;
|   36&lt;br /&gt;
| Ginga_0834-430        &lt;br /&gt;
|  1316 &lt;br /&gt;
|            4&lt;br /&gt;
|-&lt;br /&gt;
|    5&lt;br /&gt;
| AX_J1820.5-1434       &lt;br /&gt;
|  1316 &lt;br /&gt;
|          8.2&lt;br /&gt;
|   &lt;br /&gt;
|   37&lt;br /&gt;
| Vela_X-1              &lt;br /&gt;
|  1213 &lt;br /&gt;
|          1.4&lt;br /&gt;
|-&lt;br /&gt;
|    6&lt;br /&gt;
| XTE_J1855-026         &lt;br /&gt;
|  1213 &lt;br /&gt;
|           10&lt;br /&gt;
|   &lt;br /&gt;
|   38&lt;br /&gt;
| LMC_X-4               &lt;br /&gt;
|  1210 &lt;br /&gt;
|           55&lt;br /&gt;
|-&lt;br /&gt;
|    7&lt;br /&gt;
| Sct_X-1               &lt;br /&gt;
|  1116 &lt;br /&gt;
|            7&lt;br /&gt;
|   &lt;br /&gt;
|   39&lt;br /&gt;
| GRO_J1008-57          &lt;br /&gt;
|  1316 &lt;br /&gt;
|            5&lt;br /&gt;
|-&lt;br /&gt;
|    8&lt;br /&gt;
| Ginga_1843+009        &lt;br /&gt;
|  1316 &lt;br /&gt;
|         12.5&lt;br /&gt;
|   &lt;br /&gt;
|   40&lt;br /&gt;
| 4U_1036-56            &lt;br /&gt;
|  1316 &lt;br /&gt;
|            5&lt;br /&gt;
|-&lt;br /&gt;
|    9&lt;br /&gt;
| 4U_1901+03            &lt;br /&gt;
|  1366 &lt;br /&gt;
|           ? &lt;br /&gt;
|   &lt;br /&gt;
|   41&lt;br /&gt;
| Cen_X-3               &lt;br /&gt;
|  1263 &lt;br /&gt;
|           10&lt;br /&gt;
|-&lt;br /&gt;
|   10&lt;br /&gt;
| 4U_1909+07            &lt;br /&gt;
|  1210 &lt;br /&gt;
|            7&lt;br /&gt;
|   &lt;br /&gt;
|   42&lt;br /&gt;
| 1A_1118-615           &lt;br /&gt;
|  1366 &lt;br /&gt;
|            5&lt;br /&gt;
|-&lt;br /&gt;
|   11&lt;br /&gt;
| XTE_J1906+090         &lt;br /&gt;
|  1316 &lt;br /&gt;
|           10&lt;br /&gt;
|   &lt;br /&gt;
|   43&lt;br /&gt;
| 1E_1145.1-6141        &lt;br /&gt;
|  1210 &lt;br /&gt;
|          8.5&lt;br /&gt;
|-&lt;br /&gt;
|   12&lt;br /&gt;
| H_1907+097            &lt;br /&gt;
|  1216 &lt;br /&gt;
|            5&lt;br /&gt;
|   &lt;br /&gt;
|   44&lt;br /&gt;
| H_1145-619            &lt;br /&gt;
|  1316 &lt;br /&gt;
|          3.1&lt;br /&gt;
|-&lt;br /&gt;
|   13&lt;br /&gt;
| 4U_1700+24            &lt;br /&gt;
|  1400 &lt;br /&gt;
|         0.42&lt;br /&gt;
|   &lt;br /&gt;
|   45&lt;br /&gt;
| GX_301-2              &lt;br /&gt;
|  1211 &lt;br /&gt;
|          4.1&lt;br /&gt;
|-&lt;br /&gt;
|   14&lt;br /&gt;
| IGR_J19294+1816       &lt;br /&gt;
|  1316 &lt;br /&gt;
|           ? &lt;br /&gt;
|   &lt;br /&gt;
|   46&lt;br /&gt;
| SMC_X-1               &lt;br /&gt;
|  1213 &lt;br /&gt;
|           60&lt;br /&gt;
|-&lt;br /&gt;
|   15&lt;br /&gt;
| Her_X-1               &lt;br /&gt;
|  1413 &lt;br /&gt;
|         6.56&lt;br /&gt;
|   &lt;br /&gt;
|   47&lt;br /&gt;
| 3A_1239-599           &lt;br /&gt;
|  1110 &lt;br /&gt;
|           ? &lt;br /&gt;
|-&lt;br /&gt;
|   16&lt;br /&gt;
| XTE_J1946+274         &lt;br /&gt;
|  1316 &lt;br /&gt;
|          9.5&lt;br /&gt;
|   &lt;br /&gt;
|   48&lt;br /&gt;
| RX_J0101.8-7223       &lt;br /&gt;
|  1310 &lt;br /&gt;
|           60&lt;br /&gt;
|-&lt;br /&gt;
|   17&lt;br /&gt;
| KS_1947+300           &lt;br /&gt;
|  1316 &lt;br /&gt;
|          9.5&lt;br /&gt;
|   &lt;br /&gt;
|   49&lt;br /&gt;
| GX_304-1              &lt;br /&gt;
|  1316 &lt;br /&gt;
|          2.4&lt;br /&gt;
|-&lt;br /&gt;
|   18&lt;br /&gt;
| 3A_1954+319           &lt;br /&gt;
|  1416 &lt;br /&gt;
|          1.7&lt;br /&gt;
|   &lt;br /&gt;
|   50&lt;br /&gt;
| SAX_J1324.4-6200      &lt;br /&gt;
|  1310 &lt;br /&gt;
|           10&lt;br /&gt;
|-&lt;br /&gt;
|   19&lt;br /&gt;
| EXO_2030+375          &lt;br /&gt;
|  1366 &lt;br /&gt;
|          7.1&lt;br /&gt;
|   &lt;br /&gt;
|   51&lt;br /&gt;
| H_1417-624            &lt;br /&gt;
|  1316 &lt;br /&gt;
|            6&lt;br /&gt;
|-&lt;br /&gt;
|   20&lt;br /&gt;
| GRO_J2058+42          &lt;br /&gt;
|  1316 &lt;br /&gt;
|          9.0&lt;br /&gt;
|   &lt;br /&gt;
|   52&lt;br /&gt;
| SAX_J1452.8-5949      &lt;br /&gt;
|  1010 &lt;br /&gt;
|            9&lt;br /&gt;
|-&lt;br /&gt;
|   21&lt;br /&gt;
| SAX_J2103.5+4545      &lt;br /&gt;
|  1366 &lt;br /&gt;
|          6.8&lt;br /&gt;
|   &lt;br /&gt;
|   53&lt;br /&gt;
| 4U_1626-67            &lt;br /&gt;
|  1410 &lt;br /&gt;
|          9.0&lt;br /&gt;
|-&lt;br /&gt;
|   22&lt;br /&gt;
| Cep_X-4               &lt;br /&gt;
|  1316 &lt;br /&gt;
|          3.8&lt;br /&gt;
|   &lt;br /&gt;
|   54&lt;br /&gt;
| H_1538-522            &lt;br /&gt;
|  1213 &lt;br /&gt;
|          6.4&lt;br /&gt;
|-&lt;br /&gt;
|   23&lt;br /&gt;
| 3A_2206+543           &lt;br /&gt;
|  1260 &lt;br /&gt;
|          2.6&lt;br /&gt;
|   &lt;br /&gt;
|   55&lt;br /&gt;
| SWIFT_J1626.6-5156    &lt;br /&gt;
|  1366 &lt;br /&gt;
|           ? &lt;br /&gt;
|-&lt;br /&gt;
|   24&lt;br /&gt;
| 3A_0114+650           &lt;br /&gt;
|  1213 &lt;br /&gt;
|         4.5 &lt;br /&gt;
|   &lt;br /&gt;
|   56&lt;br /&gt;
| AX J1700.1-4157       &lt;br /&gt;
|  9999 &lt;br /&gt;
|           ? &lt;br /&gt;
|-&lt;br /&gt;
|   25&lt;br /&gt;
| H_0115+634            &lt;br /&gt;
|  1386 &lt;br /&gt;
|            8&lt;br /&gt;
|   &lt;br /&gt;
|   57&lt;br /&gt;
| OAO_1657-415          &lt;br /&gt;
|  1213 &lt;br /&gt;
|          7.1&lt;br /&gt;
|-&lt;br /&gt;
|   26&lt;br /&gt;
| IGR_J01583+6713       &lt;br /&gt;
|  1316 &lt;br /&gt;
|            4&lt;br /&gt;
|   &lt;br /&gt;
|   58&lt;br /&gt;
| IGR_J16358-4726       &lt;br /&gt;
|  1110 &lt;br /&gt;
|            7&lt;br /&gt;
|-&lt;br /&gt;
|   27&lt;br /&gt;
| RX_J0146.9+6121       &lt;br /&gt;
|  1310 &lt;br /&gt;
|          2.3&lt;br /&gt;
|   &lt;br /&gt;
|   59&lt;br /&gt;
| IGR_J16393-4643       &lt;br /&gt;
|  1210 &lt;br /&gt;
|         10.6&lt;br /&gt;
|-&lt;br /&gt;
|   28&lt;br /&gt;
| V_0332+53             &lt;br /&gt;
|  1366 &lt;br /&gt;
|          7.5&lt;br /&gt;
|   &lt;br /&gt;
|   60&lt;br /&gt;
| IGR_J16194-2810       &lt;br /&gt;
|  1400 &lt;br /&gt;
|          3.7&lt;br /&gt;
|-&lt;br /&gt;
|   29&lt;br /&gt;
| RX_J0440.9+4431       &lt;br /&gt;
|  1310 &lt;br /&gt;
|          3.3&lt;br /&gt;
|   &lt;br /&gt;
|   61&lt;br /&gt;
| SAX_J1808.4-3658      &lt;br /&gt;
|  1416 &lt;br /&gt;
|          3.6&lt;br /&gt;
|-&lt;br /&gt;
|   30&lt;br /&gt;
| X_Per                 &lt;br /&gt;
|  1310 &lt;br /&gt;
|          0.7&lt;br /&gt;
|   &lt;br /&gt;
|   62&lt;br /&gt;
| 3A_1822-371           &lt;br /&gt;
|  1419 &lt;br /&gt;
|          2.5&lt;br /&gt;
|-&lt;br /&gt;
|   31&lt;br /&gt;
| 1A_0535+262           &lt;br /&gt;
|  1366 &lt;br /&gt;
|            2&lt;br /&gt;
|   &lt;br /&gt;
|   63&lt;br /&gt;
| AX_J1740.2-2903       &lt;br /&gt;
|  1410 &lt;br /&gt;
|           ?&lt;br /&gt;
|-&lt;br /&gt;
|   32&lt;br /&gt;
| SAX_J0635.2+0533      &lt;br /&gt;
|  1310 &lt;br /&gt;
|            5&lt;br /&gt;
|   &lt;br /&gt;
|     &lt;br /&gt;
|                       &lt;br /&gt;
|       &lt;br /&gt;
|             &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Gaia Distances =&lt;br /&gt;
'''NOTE: The distances here are for the Gaia source that is ''closest'' to the SIMBAD position for each object. This means that for objects with poorly-determined positions or no identified optical counterpart, the distance is ''INCREDIBLY SUSPECT''.''' Until someone has time to go through source-by-source and clean this up, ''you'' need to check carefully whether the ''Gaia'' source ID listed here ''actually corresponds'' to the object you are looking at.&lt;br /&gt;
The parallaxes are converted to distance by Bailer-Jones et al. (see [https://ui.adsabs.harvard.edu/#abs/2018arXiv180410121B/abstract this paper] and [http://www.mpia.de/homes/calj/gdr2_distances/main.html this webpage]). Again, these should be taken with a hefty grain of salt and are dependent on the priors selected by Bailer-Jones et al.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Source&lt;br /&gt;
! Gaia source ID&lt;br /&gt;
! Gaia distance&lt;br /&gt;
|-&lt;br /&gt;
| [[RX J0101.8-7223]] || 4687492917085083648 || 12.3 (+2.0, -1.7)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[3A 0114+650]] || 524924310153249920 || 6.6 (+1.6, -1.2)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 0115+634]] || 524677469790488960 || 7.2 (+1.5, -1.1)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[RX J0146.9+6121]] || 511220031584305536 || 2.50 (+0.22, -0.19)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J01583+6713]] || 518990967445248256 || 7.4 (+1.1, -0.9)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[Swift J0243.6+6124]] || 465628193526364416 || 6.9 (+1.6, -1.2)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[V 0332+53]] || 444752973131169664 || 5.1 (+1.1, -0.8)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[X Per]] || 168450545792009600 || 0.79 +/- 0.04&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[RX J0440.9+4431]] || 252878401557369088 || 3.2 (+0.7, -0.5)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[1A 0535+26]] || 3441207615229815040 || 2.13 (+0.26, -0.21)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[SAX J0635.2+0533]] || 3131755943105291136 || 1.6 (+2.2, -0.8)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[MXB 0656-07]] || 3052677318793446016 || 5.1 (+1.4, -1.0)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[3A 0726-260]] || 5613494119544761088 || 9.5 (+3.1, -2.2)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[RX J0812.4-3114]] || 5548261400354128768 || 6.8 (+1.2, -1.0)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[GS 0834-430]] || 5523448270462666880 || 5.5 (+2.5, -1.7)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[Vela X-1]] || 5620657678322625920 || 2.42 (+0.19, -0.17)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1036-56]] || 5352018121173519488 || 5.0 (+1.1, -0.8)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[1A 1118-616]] || 5336957010898124160 || 2.93 (+0.26, -0.22)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[Cen X-3]] || 5337498593446516480 || 6.4 (+1.4, -1.1)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[1E1145.1-6141]] || 5334851450481641088 || 9.1 (+2.2, -1.6)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1145-619]] || 5334823859608495104 || 2.23 (+0.20, -0.17)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[GX 301-2]] || 6054569565614460800 || 3.5 (+0.6, -0.5)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[3A 1239-599]] || 6056606788861734912 || 2.9 (+2.4, -1.3)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[GX 304-1]] || 5863533199843070208 || 2.01 (+0.15, -0.13)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[SAX J1324.4-6200]] || 5868517973240268544 || 3.5 (+2.6, -1.7)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[2S 1417-624]] || 5854175187681966464 || 3.8 (+2.8, -1.8)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[SAX J1452.8-5949]] || 5878224015202026240 || 3.0 (+2.6, -1.5)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1538-522]] || 5886085557746480000 || 6.6 (+2.2, -1.5)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[2S 1553-542]] || 5884711610550541440 || 3.5 (+2.6, -1.5)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J16194-2810]] || 6039227323926220544 || 2.3 (+0.8, -0.5)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[Swift J1626.6-5156]] || 5933976985766949376 || 9.8 (+3.2, -2.4)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J16318-4848]] || 5940777877435137024 || 5.2 (+2.8, -1.9)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J16320-4751]] || 5941216101526297856 || 1.3 (+0.6, -0.4)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1626-67]] || 5809528276749789312 || 3.5 (+2.3, -1.3)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J16393-4643]] || 5942638074996489088 || 4.0 (+2.7, -1.7)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J16465-4507]] || 5943246345430928512 || 2.7 (+0.5, -0.4)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[Her X-1]] || 1338822021487330304 || 5.0 (+0.8, -0.6)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[AX J1700.1-4157]] || 5966358530819164544 || 3.4 (+2.6, -1.5)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[OAO 1657-415]] || 5966391894137386240 || 2.2 (+0.7, -0.5)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1700-37]] || 5976382915813535232 || 1.75 (+0.24, -0.19)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1700+24]] || 4571810378118789760 || 0.536 +/- 0.010&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[EXO 1722-363]] || 5974546387756541696 || 4.0 (+2.3, -1.3)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[GX 1+4]] || 4110236324513030656 || 7.6 (+4.3, -2.8)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[2XMM J174016.0-290337]] || 4060143669944331648 || 1.4 (+1.6, -0.5)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[GRO J1744-28]] || 4057539171718068224 || 1.3 (+1.2, -0.5)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J17544-2619]] || 4063908810076415872 || 2.7 (+0.5, -0.4)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[SAX J1802.7-2017]] || 4070968778552176768 || 1.5 (+2.8, -0.7)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[SAX J1808.4-3658]] || 4037867740522970240 || 5.1 (+4.3, -2.6)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[Swift J1816.7-1613]] || 4097679145798118528 || 1.4 (+2.5, -0.7)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[3A 1822-371]] || 6728016172687965568 || 6.1 (+2.7, -1.6)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[GS 1843+00]] || 4278536022438800640 || 2.3 (+2.0, -1.0)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[XTE J1855-026]] || 4255891924062617088 || 8.1 (+2.6, -1.8)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[XTE J1858+034]] || 4280844623194795136 || 1.55 (+0.28, -0.21)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[XTE J1859+083]] || 4310118600596712832 || 2.7 (+2.4, -1.5)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1901+03]] || 4268774665587135488 || 2.2 (+2.2, -1.3)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[XTE J1906+090]] || 4310649149314811776 || 2.8 (+2.4, -1.4)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1907+09]] || 4309225217336729088 || 4.4 (+2.1, -1.3)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1909+07]] || 4306419980916246656 || 2.6 (+2.3, -1.4)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J19140+0951]] || 4309253392325650176 || 2.8 (+2.4, -1.4)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J19149+1036]] || 4309736146639732352 || 3.0 (+2.5, -1.6)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J19294+1816]] || 4323316622779495680 || 2.9 (+2.5, -1.5)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[XTE J1946+274]] || 2028089540103670144 || 12.6 (+3.9, -2.9)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[KS 1947+300]] || 2031939548802102656 || 15.2 (+3.7, -2.8)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[3A 1954+319]] || 2034031438383765760 || 3.3 (+1.0, -0.7)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[EXO 2030+375]] || 2063791369815322752 || 3.6 (+1.4, -0.9)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[GRO J2058+42]] || 2065653598916388352 || 8.0 (+1.2, -1.0)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[SAX J2103.5+4545]] || 2162805896614571904 || 6.4 (+0.9, -0.7)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J21343+4738]] || 1978365123143522176 || 7.8 (+1.4, -1.1)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[Cep X-4]] || 2178178409188167296 || 10.2 (+2.2, -1.6)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 2206+54]] || 2005653524280214400 || 3.3 +/- 0.4&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[SAX J2239.3+6116]] || 2201091578667140352 || 8.0 (+1.4, -1.1)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J22534+6243]] || 2207277877757956352 || 8.1 (+2.3, -1.6)&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Updated list of accreting X-ray pulsars (pulse profile extractions) =&lt;br /&gt;
&lt;br /&gt;
This is a list to organize a library of pulse profiles for many of the known accreting X-ray pulsars. For this we scanned the NuSTAR archive at [https://heasarc.gsfc.nasa.gov/docs/archive.html Heasarc] for all objects that are listed in the two [http://astro.uni-tuebingen.de/~xrbcat/ XRB catalogues]. All public obsids are downloaded to `/userdata/data/stierhof/pp-class/&amp;lt;object_name&amp;gt;/&amp;lt;obsid&amp;gt;`. This is more than 350 observations! After reprocessing (this creates a folder `reprocessed` in each obsid folder) the region files have to be created. Right now we are not interested in detailed analysis and for bright outbursts the region choice is not that important. If you want to contribute, please create '''one''' region file for the source and '''one''' for the background. The source should be a circle centered around the brightest part of the image. The background should be an annulus with inner radius as large as the source region, and the outer as large as possible. The source and background region files should be stored in the `reprocessed` folder as `src.reg` and `bkg.reg`. '''Note:''' The regions must be valid for both detector modules!&lt;br /&gt;
&lt;br /&gt;
Once the region files are created it is straight forward to automatically extract all dataset. So please don't change anything else in the folder just yet. You can check the table if the data has been prepared (that is, if the `reprocessed` folder exists) and add the region files. If you do, please indicate it in the corresponding line in the table (searching for the source name should be helpful here).&lt;br /&gt;
&lt;br /&gt;
Once we have all region files collected we can extract the pulse profiles!&lt;br /&gt;
&lt;br /&gt;
==== Notes: ====&lt;br /&gt;
&lt;br /&gt;
If no _cl.fits files are present in the reprocessed folder, this either means that the preparation failed, or that the observation was not done in science mode. In the latter case we ignore the observations for now.&lt;br /&gt;
&lt;br /&gt;
{| class=wikitable&lt;br /&gt;
! Source&lt;br /&gt;
! Class&lt;br /&gt;
! Assignee&lt;br /&gt;
! Pulse Period&lt;br /&gt;
! Has Region&lt;br /&gt;
! Is Prepared&lt;br /&gt;
! Is Processed&lt;br /&gt;
|-&lt;br /&gt;
| [[1A 0535+262]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Vicente&lt;br /&gt;
| 103.47&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[1E 1145.1-6141]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Vicente&lt;br /&gt;
| 298.0&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[2RXP J130159.6-635806]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Vicente&lt;br /&gt;
| 643.0&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[2S 0114+650]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 10008.0&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[2S 1417-624]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Vicente&lt;br /&gt;
| 17.6&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[2S 1553-542]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Vicente&lt;br /&gt;
| 9.28&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[2S 1845-024]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Vicente&lt;br /&gt;
| 94.72&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[3A 1822-371]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| Vicente&lt;br /&gt;
| 0.59&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[3U 1223-62]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Nico&lt;br /&gt;
| 696.0&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[3U 1258-61]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Vicente&lt;br /&gt;
| 272.0&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[4U 0115+63]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 3.61&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[4U 0352+309]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Aafia&lt;br /&gt;
| 837.67&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[4U 0614+09]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.0020964360587002098&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[4U 1538-52]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Aafia&lt;br /&gt;
| 526.42&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[4U 1608-52]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| Vicente&lt;br /&gt;
| 0.0016&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[4U 1626-67]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 7.7&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[4U 1636-536]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.001721&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[4U 1702-429]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.00303&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[4U 1728-34]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.0027548209366391185&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[4U 1901+03]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 2.76&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[4U 1907+09]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Aafia&lt;br /&gt;
| 438.0&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[4U 1909+07]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Aafia&lt;br /&gt;
| 603.6&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[4U 1915-05]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.0037&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[4U 1954+31]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 19400.0&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[4U 2206+54]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 5555.0&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[Aql X-1]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.00182&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[BSD 24-491]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 202.5&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[CXOGlb J174852.7-202124]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.004857&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[Cen X-3]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Vicente&lt;br /&gt;
| 4.8&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[Cep X-4]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 65.35&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[EXO 0748-676]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.0019157088122605363&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[EXO 2030+375]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 41.31&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[GRO J1008-57]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Aafia&lt;br /&gt;
| 93.5&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[GRO J1744-28]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.467&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[GRO J1750-27]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Vicente&lt;br /&gt;
| 4.45&lt;br /&gt;
| X (weird bkg)&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[GRO J2058+42]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 195.25&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[GRS 1741.9-2853]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.001697792869269949&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[GX 1+4]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| Vicente&lt;br /&gt;
| 138.17&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[Ginga 0834-430]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 12.3&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[HD 110432]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 14200.0&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[HD 77581]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 283.0&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[Her X-1]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 1.24&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J00291+5934]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.00167&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J06074+2205]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 373.2&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J11215-5952]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 186.8&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J16320-4751]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 1308.8&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J16358-4726]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 5880.0&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J16393-4643]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Aafia&lt;br /&gt;
| 908.79&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J16418-4532]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Aafia&lt;br /&gt;
| 1246.0&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J16493-4348]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 1093.1&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J16597-3704]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.00951&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J17062-6143]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| Vicente&lt;br /&gt;
| 0.00611&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J17329-2731]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 6680.0&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J17379-3747]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| Vicente&lt;br /&gt;
| 0.002136&lt;br /&gt;
| X (obs2 source?)&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J17480-2446]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.09054&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J17494-3030]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.002659219644588837&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J17498-2921]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.002494&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J17511-3057]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.00408&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J17544-2619]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 71.49&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J17591-2342]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.001897&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J18027-2016]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 139.6&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J18219-1347]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 52.46&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J18245-2452]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.00393&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J19294+1816]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 12.44&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J21343+4738]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 322.7&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[KS 1947+300]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 18.7&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[MAXI J0655-013]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 1129.1&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[MAXI J0903-531]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 14.05&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[MAXI J0911-655]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.00294&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[MAXI J1409-619]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 503.0&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[MAXI J1816-195]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.0018917896329928112&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[MXB 0656-072]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Nico&lt;br /&gt;
| 160.7&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[MXB 1659-29]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.00176&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[MXB 1730-335]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.0032679738562091504&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[OAO 1657-415]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Vicente&lt;br /&gt;
| 37.03&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[PSR B1259-63]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.05&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[PSR J1023+0038]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.001687&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[PSR J1723-2837]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.00186219739292365&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[SAX J1324.4-6200]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 172.84&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[SAX J1748.9-2021]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.00226&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[SAX J1808.4-3658]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.00249&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[SAX J2103.5+4545]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 358.61&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[SGR 0755-2933]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 308.0&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[SRGA J124404.1-632232]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Aafia&lt;br /&gt;
| 538.7&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[SRGE J204319.0+443820]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 741.8&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[SWIFT J1749.4-2807]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.00193&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[SWIFT J1756.9-2508]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.005493&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[SWIFT J1843.5-0343]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 42.5&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[Sct X-1]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 112.0&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[Swift J0243.6+6124]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 9.87&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[Swift J0840.7-3516]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 8.96&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[Swift J1626.6-5156]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 15.36&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[Swift J1816.7-1613]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Nico&lt;br /&gt;
| 143.69&lt;br /&gt;
| X (weird bkg)&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[V0332+53]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 4.4&lt;br /&gt;
| X &lt;br /&gt;
| X (some crashed)&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[XMM J174457-2850.3]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 5.2521&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[XSS J12270-4859]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.001686&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[XTE J1739-285]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.00258732212160414&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[XTE J1748-361]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.0018867924528301887&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[XTE J1829-098]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 7.85&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[XTE J1858+034]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 221.0&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[XTE J1859+083]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 9.79&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[XTE J1946+274]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 15.8&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Correlation between luminosity and CRSF energy =&lt;br /&gt;
In recent years more and more sources have been observed at different luminosities, allowing us to find correlation between the luminosity and the cyclotron line energy. A summary of the current state of the observations can be found on this page:&lt;br /&gt;
[[CRSF energy as function of luminosity]]&lt;br /&gt;
&lt;br /&gt;
= Assignments =&lt;br /&gt;
Our collaboration has assigned one or two sources to each member to take care of, i.e., to put together the most important information and keep the page up to date in case new data are available or new papers are published. [[X-ray pulsar assignments|The list]] can only be accessed if logged in.&lt;/div&gt;</summary>
		<author><name>Thalhammer</name></author>
	</entry>
	<entry>
		<id>https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=List_of_accreting_X-ray_pulsars&amp;diff=3146</id>
		<title>List of accreting X-ray pulsars</title>
		<link rel="alternate" type="text/html" href="https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=List_of_accreting_X-ray_pulsars&amp;diff=3146"/>
		<updated>2023-12-01T15:05:20Z</updated>

		<summary type="html">&lt;p&gt;Thalhammer: /* Notes: */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Accreting X-ray Pulsars]]&lt;br /&gt;
&lt;br /&gt;
= List of accreting X-ray pulsars =&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
! Source&lt;br /&gt;
! RA&lt;br /&gt;
! Dec&lt;br /&gt;
! l&lt;br /&gt;
! b&lt;br /&gt;
! Pspin (s)&lt;br /&gt;
! Porbit (d)&lt;br /&gt;
! Type&lt;br /&gt;
! CRSF?&lt;br /&gt;
! Persistent?&lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| [[CXOU J005047.9-731817]] || 12.699963 || -73.305018 || 302.995436 || -43.823153 || 292 ||   || [[List of Be X-ray Binaries|BeXRB]]? ||   || T || aka SXP 292&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[RX J0059.2-7138]] || 14.803112 || -71.645828 || 302.059336 || -45.469247 || 2.76 || 82? || [[List of Be X-ray Binaries|BeXRB]]? || [[List of cyclotron line sources|C]]? || T || aka SXP 2.76&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[RX J0101.8-7223]] || 15.467910 || -72.392796 || 301.821935 || -44.712961 || 175 ||   || [[List of Be X-ray Binaries|BeXRB]] ||   || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[SMC X-1]] || 19.271456 || -73.443343 || 300.414946 || -43.559342 || 0.71 || 3.892 || SG ||   || P || eclipsing&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[3A 0114+650]] || 19.511228 || 65.291623 || 125.709976 || 2.563488 || 9828 || 11.6 || SG ||   || P || 30.7 d superorbital modulation&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 0115+634]] || 19.633194 || 63.742522 || 125.923515 || 1.028265 || 3.6 || 24.3 || [[List of Be X-ray Binaries|BeXRB]] || [[List of cyclotron line sources|C]] || T || 5 or more lines&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[SXP 265]] || 23.214439 || -74.429258 || 299.185905 || -42.396387 || 264.52 || ~146 || [[List of Be X-ray Binaries|BeXRB]] ||   || PT || SMC region, persistent low luminosity, one type I outburst&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[RX J0146.9+6121]] || 26.750876 || 61.356573 || 129.541104 || -0.800112 || 1412 || 330? || [[List of Be X-ray Binaries|BeXRB]] ||   || T || aka V* V831 Cas&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J01583+6713]] || 29.577033 || 67.223185 || 129.352236 || 5.188723 || 469? ||   || [[List of Be X-ray Binaries|BeXRB]] || [[List of cyclotron line sources|C]]? || T || controversial claim of CRSF features&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[Swift J0243.6+6124]] || 40.918432 || 61.434378 || 135.934157 || 1.428788 || 9.86 || 27.587 || [[List of Be X-ray Binaries|BeXRB]] ||   || T || Galactic ULX?&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[V 0332+53]] || 53.749630 || 53.173140 || 146.052090 || -2.194026 || 4.37 || 34.25 || [[List of Be X-ray Binaries|BeXRB]] || [[List of cyclotron line sources|C]] || T || multiple lines&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[X Per]] || 58.846151 || 31.045836 || 163.081353 || -17.136203 || 830 || 250.3 || [[List of Be X-ray Binaries|BeXRB]] || [[List of cyclotron line sources|C]]? || P || magnetar?&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[RX J0440.9+4431]] || 70.247207 || 44.530344 || 159.847095 || -1.270023 || 203 || 155 || [[List of Be X-ray Binaries|BeXRB]] ||   || P || aka LS V+44 17, persistent, but with outbursts&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[LXP 169]] || 76.981153 || -68.418135 || 279.245167 || -34.534204 || 168.8 || 24.3 || [[List of Be X-ray Binaries|BeXRB]] ||   || T? || NS eclipsing companion&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[Swift J053041.9-665426]] || 82.675788 || -66.907566 || 276.997292 || -32.675902 || 28.78 ||   || [[List of Be X-ray Binaries|BeXRB]] ||   || T? ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[LMC X-4]] || 83.206501 || -66.370332 || 276.334942 || -32.529084 || 13.5 || 1.4 || SG ||   || P || superorbital variation ~30 d&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[1A 0535+26]] || 84.727393 || 26.315776 || 181.445049 || -2.643537 || 103 || 111.1 || [[List of Be X-ray Binaries|BeXRB]] || [[List of cyclotron line sources|C]] || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[SAX J0635.2+0533]] || 98.822528 || 5.553870 || 206.149196 || -1.044562 || 0.0338 ||   || [[List of Be X-ray Binaries|BeXRB]] ||   || T || low luminosity&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[MXB 0656-07]] || 104.572030 || -7.209774 || 220.128540 || -1.767278 || 160.4 || 101.2 || [[List of Be X-ray Binaries|BeXRB]] || [[List of cyclotron line sources|C]] ||   || aka XTE J0658-073&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[3A 0726-260]] || 112.223241 || -26.108019 || 240.281581 || -4.050430 || 103.2 || 34.5 || [[List of Be X-ray Binaries|BeXRB]] ||   || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[RX J0812.4-3114]] || 123.118149 || -31.247807 || 249.578200 || 1.542815 || 31.9 || 80 || [[List of Be X-ray Binaries|BeXRB]] ||   || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[GS 0834-430]] || 128.981072 || -43.185598 || 262.020238 || -1.509977 || 12.3 || 105.8 || [[List of Be X-ray Binaries|BeXRB]] ||   || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[Vela X-1]] || 135.528560 || -40.554654 || 263.058248 || 3.929864 || 283 || 8.96 || SG || [[List of cyclotron line sources|C]] || P || eclipsing&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[GRO J1008-57]] || 152.439620 || -58.292035 || 282.996761 || -1.822544 || 93.7 || 249.48 || [[List of Be X-ray Binaries|BeXRB]] || [[List of cyclotron line sources|C]]? || T || outbursts predicted precisely&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1036-56]] || 159.397094 || -56.798840 || 285.352684 || 1.433482 || 862 ||   || [[List of Be X-ray Binaries|BeXRB]] ||   || P? || aka RX J1037.5-564/LS 1698&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[1A 1118-616]] || 170.238174 || -61.916707 || 292.498528 || -0.891807 || 407 || 24? || [[List of Be X-ray Binaries|BeXRB]] || [[List of cyclotron line sources|C]] || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[Cen X-3]] || 170.312856 || -60.623776 || 292.090328 || 0.335524 || 4.8 || 2.09 || SG || [[List of cyclotron line sources|C]] || P || disk-fed HMXB&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[1E1145.1-6141]] || 176.868942 || -61.953720 || 295.489729 || -0.009704 || 297 || 14.4 || SG ||   ||   || (V* V830 Cen) varying luminosity states&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1145-619]] || 177.000032 || -62.206910 || 295.611079 || -0.240241 || 292 || 187.5 || [[List of Be X-ray Binaries|BeXRB]] ||   || PT ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[GX 301-2]] || 186.656453 || -62.770359 || 300.098061 || -0.035212 || 686 || 41.5 || SG || [[List of cyclotron line sources|C]] || P || very massive companion, strong orbital variability&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[3A 1239-599]] || 190.508997 || -60.200951 || 301.762822 || 2.649455 || 191 ||   ||   ||   ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[GX 304-1]] || 195.321198 || -61.601845 || 304.102702 || 1.247519 || 272 || 132.2 || [[List of Be X-ray Binaries|BeXRB]] || [[List of cyclotron line sources|C]] || T || Strong spectral parameter variations&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[SAX J1324.4-6200]] || 201.108853 || -62.016515 || 306.792444 || 0.607646 || 171 || 22 || [[List of Be X-ray Binaries|BeXRB]]? ||   ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[2S 1417-624]] || 215.303896 || -62.698168 || 313.021369 || -1.598347 || 17.6 || 42.12 || [[List of Be X-ray Binaries|BeXRB]] ||   || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[SAX J1452.8-5949]] || 223.207002 || -59.820983 || 317.646019 || -0.463151 || 437 ||   || [[List of Be X-ray Binaries|BeXRB]]? ||   ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1538-522]] || 235.597300 || -52.386011 || 327.419660 || 2.163700 || 530 || 3.7 || SG || [[List of cyclotron line sources|C]] || P ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[2S 1553-542]] || 239.452345 || -54.416113 || 327.942599 || -0.857197 || 9.3 || 29.56 || [[List of Be X-ray Binaries|BeXRB]]? ||   || P || Occasional outbursts&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J16194-2810]] || 244.888926 || -28.127773 || 349.119337 || 15.541316 ||   ||   || [[List of symbiotic X-ray binaries|SyXB]] ||   ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[Swift J1626.6-5156]] || 246.652146 || -51.941848 || 332.780988 || -2.002708 || 15.4 || 132.9 || [[List of Be X-ray Binaries|BeXRB]] || [[List of cyclotron line sources|C]] || T || strong flares&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J16318-4848]] || 247.951259 || -48.816876 || 335.615970 || -0.447754 ||   ||   || SG ||   || P || super absorbed source&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J16320-4751]] || 248.009669 || -47.874785 || 336.330340 || 0.167654 || 1309 || 8.986 || SG ||   || P || aka 2FGL J1632.4-4753c&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1626-67]] || 248.069509 || -67.461207 || 321.788013 || -13.091773 || 7.67 || 0.029 || UCXB || [[List of cyclotron line sources|C]] || P || Torque reversals; only UCXB with CRSF.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J16358-4726]] || 249.124997 || -47.623903 || 337.023067 || -0.213710 || 5880 ||   || [[List of symbiotic X-ray binaries|SyXB]] ||   ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J16393-4643]] || 249.772382 || -46.704006 || 338.001098 || 0.075060 || 912 || 3.7 || [[List of symbiotic X-ray binaries|SyXB]] ||   ||   || aka AX J1639.0-4642&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J16465-4507]] || 251.646902 || -45.117960 || 340.053530 || 0.135029 || 228 || 30.243 ||   ||   || P || aka 2MASS J16463526-4507045&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[Her X-1]] || 254.457539 || 35.342324 || 58.148987 || 37.523034 || 1.24 || 1.7 || IM || [[List of cyclotron line sources|C]] || P ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[AX J1700.1-4157]] || 255.018132 || -41.968217 || 344.037996 || 0.235782 || 715 ||   || [[List of Be X-ray Binaries|BeXRB]]? ||   ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[OAO 1657-415]] || 255.202665 || -41.654882 || 344.369539 || 0.320505 || 37.7 || 10.4 || SG || [[List of cyclotron line sources|C]]? || P || eclipsing&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1700-37]] || 255.986566 || -37.844121 || 347.754446 || 2.173492 ||   || 3.4 || SG ||   || P || No pulsations; eclipsing source&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1700+24]] || 256.643762 || 23.971820 || 45.151698 || 32.990711 || 404 ||   || [[List of symbiotic X-ray binaries|SyXB]] ||   ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[EXO 1722-363]] || 261.296681 || -36.284621 || 351.495256 || -0.354515 || ~414 || 9.74 || HMXB ||   ||   || aka IGR J17252–3616, heavily absorbed, eclipsing&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[GX 1+4]] || 263.008955 || -24.745600 || 1.937022 || 4.794969 || 170 || 1161 || [[List of symbiotic X-ray binaries|SyXB]] ||   || P || Pspin evolving rapidly&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[2XMM J174016.0-290337]] || 265.067079 || -29.060569 || 359.278793 || 0.929892 || 626 ||   || [[List of symbiotic X-ray binaries|SyXB]] ||   ||   || a. k.a. AX_J1740.2-2903&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[GRO J1744-28]] || 266.139419 || -28.744480 || 0.042075 || 0.298489 || 0.47 || 11.8 || LMXB ||   || T || &amp;quot;Bursting Pulsar&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[GRO J1750-27]] || 267.291434 || -26.639700 || 2.370662 || 0.518408 || 4.45 || 29.82 || [[List of Be X-ray Binaries|BeXRB]]? ||   || P || aka AX J1749.1-2639&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J17544-2619]] || 268.605299 || -26.331274 || 3.235980 || -0.335557 ||   || 4.93 || SFXT? || [[List of cyclotron line sources|C]] || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[SAX J1802.7-2017]] || 270.665728 || -20.286816 || 9.417461 || 1.044121 || 139.6 || 4.57 || SG ||   || P || aka IGR J18027-2016&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[1RXS J180431.1-273932]] || 271.130284 || -27.659214 || 3.202710 || -2.947774 || 494 ||   || [[List of symbiotic X-ray binaries|SyXB]] ||   ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[SAX J1808.4-3658]] || 272.114166 || -36.979379 || 355.384418 || -8.148034 || 0.0025 || 0.837 || LMXB ||   ||   || aka V* V4580 Sgr, disk accretor(?)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[Swift J1816.7-1613]] || 274.176846 || -16.222949 || 14.587018 || 0.092428 || 142.9 || 151? || [[List of Be X-ray Binaries|BeXRB]]? ||   || T || [http://www.astronomerstelegram.org/?read=6253 ATel 6253] [http://www.astronomerstelegram.org/?read=1457 ATel 1457]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J18179-1621]] || 274.467048 || -16.359400 || 14.599162 || -0.217510 || 11.82 ||   ||   || [[List of cyclotron line sources|C]]? || T || [http://www.astronomerstelegram.org/?read=1457 ATel 3947] [http://www.astronomerstelegram.org/?read=3949 ATel 3949]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[AX J1820.5-1434]] || 275.122921 || -14.571809 || 16.473200 || 0.070620 || 152 ||   ||   ||   ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[3A 1822-371]] || 276.445028 || -37.105158 || 356.850238 || -11.290768 || 0.59 || 0.23 || LMXB ||   ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[Sct X-1]] || 278.857602 || -7.614004 || 24.336027 || 0.065699 || 112 || 111 || [[List of symbiotic X-ray binaries|SyXB]] ||   ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[GS 1843+00]] || 281.403474 || 0.863160 || 33.036370 || 1.689359 ||   ||   ||   ||   || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[2S 1845-024]] || 282.075590 || -2.419729 || 30.421052 || -0.406023 || 94.8 || 242.2 || [[List of Be X-ray Binaries|BeXRB]]? ||   || T || aka GS 1843-02&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[XTE J1855-026]] || 283.876680 || -2.604678 || 31.076348 || -2.092060 || 361 || 6.1 || SG ||   ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[XTE J1858+034]] || 284.678379 || 3.439739 || 36.822153 || -0.048088 ||   || 221 ||   ||   || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[XTE J1859+083]] || 284.778177 || 8.246352 || 41.144826 || 2.058031 || 9.8 ||   ||   ||   || T || [http://www.astronomerstelegram.org/?read=7037 ATel 7037]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1901+03]] || 285.903524 || 3.190426 || 37.159966 || -1.249760 ||   ||   ||   ||   || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[XTE J1906+090]] || 286.197769 || 9.044912 || 42.497189 || 1.174872 || 89.2 ||   || [[List of Be X-ray Binaries|BeXRB]]? ||   ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1907+09]] || 287.408533 || 9.829777 || 43.743566 || 0.475292 || 441 || 8.37 || SG || [[List of cyclotron line sources|C]] || P ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1909+07]] || 287.700872 || 7.597657 || 41.896991 || -0.811637 || 604 || 4.4 || SG ||   || P ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J19140+0951]] || 288.517606 || 9.882865 || 44.296348 || -0.468771 ||   || 13.55 || HMXB ||   || ? ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J19149+1036]] || 288.728311 || 10.612245 || 45.038573 || -0.313490 ||   || 22.25 || SG || [[List of cyclotron line sources|C]] || P || very close to GRS1915&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J19294+1816]] || 292.482927 || 18.310607 || 53.540075 || 0.115022 || 12.5 || 116? || [[List of Be X-ray Binaries|BeXRB]]? ||   || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[XTE J1946+274]] || 296.413975 || 27.365400 || 63.207144 || 1.395565 || 15.8 || 169.2 || [[List of Be X-ray Binaries|BeXRB]] || [[List of cyclotron line sources|C]] || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[KS 1947+300]] || 297.397839 || 30.208809 || 66.098966 || 2.083585 || 18.8 || 40.4 || [[List of Be X-ray Binaries|BeXRB]] || [[List of cyclotron line sources|C]] || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[3A 1954+319]] || 298.926399 || 32.096931 || 68.391941 || 1.926894 || 1.91e4 ||   || [[List of symbiotic X-ray binaries|SyXB]] ||   ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[EXO 2030+375]] || 308.063627 || 37.637433 || 77.151841 || -1.241801 || 41.8 || 46.03 || [[List of Be X-ray Binaries|BeXRB]] ||   || T || regular outbursts&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[GRO J2058+42]] || 314.698059 || 41.776980 || 83.569877 || -2.655492 ||   ||   ||   ||   || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[SAX J2103.5+4545]] || 315.898770 || 45.751533 || 87.130252 || -0.684802 || 359 || 12.7 || [[List of Be X-ray Binaries|BeXRB]] ||   || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J21343+4738]] || 323.584869 || 47.633380 || 92.171608 || -3.117683 || 320.35 || 20.85 || [[List of Be X-ray Binaries|BeXRB]] ||   || P? || Varying levels of activity&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[Cep X-4]] || 324.877853 || 56.986219 || 99.012209 || 3.312526 || 66.32 || 20.85 || [[List of Be X-ray Binaries|BeXRB]] || [[List of cyclotron line sources|C]] || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 2206+54]] || 331.984289 || 54.518433 || 100.603243 || -1.105922 || 5560 || 19.25? || SG ||   || P || magnetar?&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[SAX J2239.3+6116]] || 339.836831 || 61.274053 || 107.734431 || 2.362332 || 1247 || 262? || [[List of Be X-ray Binaries|BeXRB]] ||   || T ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J22534+6243]] || 343.479672 || 62.726882 || 109.923864 || 2.861557 || 46.7 ||   || [[List of Be X-ray Binaries|BeXRB]]? ||   || P? ||  &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Location in the Galaxy =&lt;br /&gt;
&lt;br /&gt;
The figure below displays the position of accreting X-ray pulsars in the Galaxy as far as known at this moment. Click on the figure for a larger version. Labels indicate the ordinal number in the first column of the table. Uncertainties in the distances are not indicated. Empty symbols represent sources for which there is no distance info in the literature; they have been artificially set to a distance of 7.6 kpc. [http://heasarc.gsfc.nasa.gov/W3Browse/catalog/class.html HEASARC source class identifiers] are also given. The spiral arms are from Vallée et al. (2008)&amp;lt;ref name=&amp;quot;Vallee08&amp;quot; /&amp;gt;. Figure and data provided by Arash Bodaghee, SSL, UC Berkeley.&lt;br /&gt;
&lt;br /&gt;
[[File:galacticdistributionxrp.png|560px|Galactic distribution of accreting X-ray pulsars.]]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! #&lt;br /&gt;
! Source                &lt;br /&gt;
! Class &lt;br /&gt;
! Dist. [kpc]&lt;br /&gt;
!   &lt;br /&gt;
! # &lt;br /&gt;
! Source                &lt;br /&gt;
! Class &lt;br /&gt;
! Dist. [kpc]&lt;br /&gt;
|-&lt;br /&gt;
|    1&lt;br /&gt;
| GRO_J1744-28          &lt;br /&gt;
|  1490 &lt;br /&gt;
|          8.5&lt;br /&gt;
|     &lt;br /&gt;
|   33&lt;br /&gt;
| 3A_0656-072           &lt;br /&gt;
|  1316 &lt;br /&gt;
|          3.9&lt;br /&gt;
|-&lt;br /&gt;
|    2&lt;br /&gt;
| GX_1+4                &lt;br /&gt;
|  1410 &lt;br /&gt;
|          4.5&lt;br /&gt;
|   &lt;br /&gt;
|   34&lt;br /&gt;
| 3A_0726-260           &lt;br /&gt;
|  1310 &lt;br /&gt;
|          6.1&lt;br /&gt;
|-&lt;br /&gt;
|    3&lt;br /&gt;
| GRO_J1750-27          &lt;br /&gt;
|  1316 &lt;br /&gt;
|           ? &lt;br /&gt;
|   &lt;br /&gt;
|   35&lt;br /&gt;
| RX_J0812.4-3114       &lt;br /&gt;
|  1316 &lt;br /&gt;
|          8.8&lt;br /&gt;
|-&lt;br /&gt;
|    4&lt;br /&gt;
| 1RXS_J180431.1-273932 &lt;br /&gt;
|  1410 &lt;br /&gt;
|           ? &lt;br /&gt;
|   &lt;br /&gt;
|   36&lt;br /&gt;
| Ginga_0834-430        &lt;br /&gt;
|  1316 &lt;br /&gt;
|            4&lt;br /&gt;
|-&lt;br /&gt;
|    5&lt;br /&gt;
| AX_J1820.5-1434       &lt;br /&gt;
|  1316 &lt;br /&gt;
|          8.2&lt;br /&gt;
|   &lt;br /&gt;
|   37&lt;br /&gt;
| Vela_X-1              &lt;br /&gt;
|  1213 &lt;br /&gt;
|          1.4&lt;br /&gt;
|-&lt;br /&gt;
|    6&lt;br /&gt;
| XTE_J1855-026         &lt;br /&gt;
|  1213 &lt;br /&gt;
|           10&lt;br /&gt;
|   &lt;br /&gt;
|   38&lt;br /&gt;
| LMC_X-4               &lt;br /&gt;
|  1210 &lt;br /&gt;
|           55&lt;br /&gt;
|-&lt;br /&gt;
|    7&lt;br /&gt;
| Sct_X-1               &lt;br /&gt;
|  1116 &lt;br /&gt;
|            7&lt;br /&gt;
|   &lt;br /&gt;
|   39&lt;br /&gt;
| GRO_J1008-57          &lt;br /&gt;
|  1316 &lt;br /&gt;
|            5&lt;br /&gt;
|-&lt;br /&gt;
|    8&lt;br /&gt;
| Ginga_1843+009        &lt;br /&gt;
|  1316 &lt;br /&gt;
|         12.5&lt;br /&gt;
|   &lt;br /&gt;
|   40&lt;br /&gt;
| 4U_1036-56            &lt;br /&gt;
|  1316 &lt;br /&gt;
|            5&lt;br /&gt;
|-&lt;br /&gt;
|    9&lt;br /&gt;
| 4U_1901+03            &lt;br /&gt;
|  1366 &lt;br /&gt;
|           ? &lt;br /&gt;
|   &lt;br /&gt;
|   41&lt;br /&gt;
| Cen_X-3               &lt;br /&gt;
|  1263 &lt;br /&gt;
|           10&lt;br /&gt;
|-&lt;br /&gt;
|   10&lt;br /&gt;
| 4U_1909+07            &lt;br /&gt;
|  1210 &lt;br /&gt;
|            7&lt;br /&gt;
|   &lt;br /&gt;
|   42&lt;br /&gt;
| 1A_1118-615           &lt;br /&gt;
|  1366 &lt;br /&gt;
|            5&lt;br /&gt;
|-&lt;br /&gt;
|   11&lt;br /&gt;
| XTE_J1906+090         &lt;br /&gt;
|  1316 &lt;br /&gt;
|           10&lt;br /&gt;
|   &lt;br /&gt;
|   43&lt;br /&gt;
| 1E_1145.1-6141        &lt;br /&gt;
|  1210 &lt;br /&gt;
|          8.5&lt;br /&gt;
|-&lt;br /&gt;
|   12&lt;br /&gt;
| H_1907+097            &lt;br /&gt;
|  1216 &lt;br /&gt;
|            5&lt;br /&gt;
|   &lt;br /&gt;
|   44&lt;br /&gt;
| H_1145-619            &lt;br /&gt;
|  1316 &lt;br /&gt;
|          3.1&lt;br /&gt;
|-&lt;br /&gt;
|   13&lt;br /&gt;
| 4U_1700+24            &lt;br /&gt;
|  1400 &lt;br /&gt;
|         0.42&lt;br /&gt;
|   &lt;br /&gt;
|   45&lt;br /&gt;
| GX_301-2              &lt;br /&gt;
|  1211 &lt;br /&gt;
|          4.1&lt;br /&gt;
|-&lt;br /&gt;
|   14&lt;br /&gt;
| IGR_J19294+1816       &lt;br /&gt;
|  1316 &lt;br /&gt;
|           ? &lt;br /&gt;
|   &lt;br /&gt;
|   46&lt;br /&gt;
| SMC_X-1               &lt;br /&gt;
|  1213 &lt;br /&gt;
|           60&lt;br /&gt;
|-&lt;br /&gt;
|   15&lt;br /&gt;
| Her_X-1               &lt;br /&gt;
|  1413 &lt;br /&gt;
|         6.56&lt;br /&gt;
|   &lt;br /&gt;
|   47&lt;br /&gt;
| 3A_1239-599           &lt;br /&gt;
|  1110 &lt;br /&gt;
|           ? &lt;br /&gt;
|-&lt;br /&gt;
|   16&lt;br /&gt;
| XTE_J1946+274         &lt;br /&gt;
|  1316 &lt;br /&gt;
|          9.5&lt;br /&gt;
|   &lt;br /&gt;
|   48&lt;br /&gt;
| RX_J0101.8-7223       &lt;br /&gt;
|  1310 &lt;br /&gt;
|           60&lt;br /&gt;
|-&lt;br /&gt;
|   17&lt;br /&gt;
| KS_1947+300           &lt;br /&gt;
|  1316 &lt;br /&gt;
|          9.5&lt;br /&gt;
|   &lt;br /&gt;
|   49&lt;br /&gt;
| GX_304-1              &lt;br /&gt;
|  1316 &lt;br /&gt;
|          2.4&lt;br /&gt;
|-&lt;br /&gt;
|   18&lt;br /&gt;
| 3A_1954+319           &lt;br /&gt;
|  1416 &lt;br /&gt;
|          1.7&lt;br /&gt;
|   &lt;br /&gt;
|   50&lt;br /&gt;
| SAX_J1324.4-6200      &lt;br /&gt;
|  1310 &lt;br /&gt;
|           10&lt;br /&gt;
|-&lt;br /&gt;
|   19&lt;br /&gt;
| EXO_2030+375          &lt;br /&gt;
|  1366 &lt;br /&gt;
|          7.1&lt;br /&gt;
|   &lt;br /&gt;
|   51&lt;br /&gt;
| H_1417-624            &lt;br /&gt;
|  1316 &lt;br /&gt;
|            6&lt;br /&gt;
|-&lt;br /&gt;
|   20&lt;br /&gt;
| GRO_J2058+42          &lt;br /&gt;
|  1316 &lt;br /&gt;
|          9.0&lt;br /&gt;
|   &lt;br /&gt;
|   52&lt;br /&gt;
| SAX_J1452.8-5949      &lt;br /&gt;
|  1010 &lt;br /&gt;
|            9&lt;br /&gt;
|-&lt;br /&gt;
|   21&lt;br /&gt;
| SAX_J2103.5+4545      &lt;br /&gt;
|  1366 &lt;br /&gt;
|          6.8&lt;br /&gt;
|   &lt;br /&gt;
|   53&lt;br /&gt;
| 4U_1626-67            &lt;br /&gt;
|  1410 &lt;br /&gt;
|          9.0&lt;br /&gt;
|-&lt;br /&gt;
|   22&lt;br /&gt;
| Cep_X-4               &lt;br /&gt;
|  1316 &lt;br /&gt;
|          3.8&lt;br /&gt;
|   &lt;br /&gt;
|   54&lt;br /&gt;
| H_1538-522            &lt;br /&gt;
|  1213 &lt;br /&gt;
|          6.4&lt;br /&gt;
|-&lt;br /&gt;
|   23&lt;br /&gt;
| 3A_2206+543           &lt;br /&gt;
|  1260 &lt;br /&gt;
|          2.6&lt;br /&gt;
|   &lt;br /&gt;
|   55&lt;br /&gt;
| SWIFT_J1626.6-5156    &lt;br /&gt;
|  1366 &lt;br /&gt;
|           ? &lt;br /&gt;
|-&lt;br /&gt;
|   24&lt;br /&gt;
| 3A_0114+650           &lt;br /&gt;
|  1213 &lt;br /&gt;
|         4.5 &lt;br /&gt;
|   &lt;br /&gt;
|   56&lt;br /&gt;
| AX J1700.1-4157       &lt;br /&gt;
|  9999 &lt;br /&gt;
|           ? &lt;br /&gt;
|-&lt;br /&gt;
|   25&lt;br /&gt;
| H_0115+634            &lt;br /&gt;
|  1386 &lt;br /&gt;
|            8&lt;br /&gt;
|   &lt;br /&gt;
|   57&lt;br /&gt;
| OAO_1657-415          &lt;br /&gt;
|  1213 &lt;br /&gt;
|          7.1&lt;br /&gt;
|-&lt;br /&gt;
|   26&lt;br /&gt;
| IGR_J01583+6713       &lt;br /&gt;
|  1316 &lt;br /&gt;
|            4&lt;br /&gt;
|   &lt;br /&gt;
|   58&lt;br /&gt;
| IGR_J16358-4726       &lt;br /&gt;
|  1110 &lt;br /&gt;
|            7&lt;br /&gt;
|-&lt;br /&gt;
|   27&lt;br /&gt;
| RX_J0146.9+6121       &lt;br /&gt;
|  1310 &lt;br /&gt;
|          2.3&lt;br /&gt;
|   &lt;br /&gt;
|   59&lt;br /&gt;
| IGR_J16393-4643       &lt;br /&gt;
|  1210 &lt;br /&gt;
|         10.6&lt;br /&gt;
|-&lt;br /&gt;
|   28&lt;br /&gt;
| V_0332+53             &lt;br /&gt;
|  1366 &lt;br /&gt;
|          7.5&lt;br /&gt;
|   &lt;br /&gt;
|   60&lt;br /&gt;
| IGR_J16194-2810       &lt;br /&gt;
|  1400 &lt;br /&gt;
|          3.7&lt;br /&gt;
|-&lt;br /&gt;
|   29&lt;br /&gt;
| RX_J0440.9+4431       &lt;br /&gt;
|  1310 &lt;br /&gt;
|          3.3&lt;br /&gt;
|   &lt;br /&gt;
|   61&lt;br /&gt;
| SAX_J1808.4-3658      &lt;br /&gt;
|  1416 &lt;br /&gt;
|          3.6&lt;br /&gt;
|-&lt;br /&gt;
|   30&lt;br /&gt;
| X_Per                 &lt;br /&gt;
|  1310 &lt;br /&gt;
|          0.7&lt;br /&gt;
|   &lt;br /&gt;
|   62&lt;br /&gt;
| 3A_1822-371           &lt;br /&gt;
|  1419 &lt;br /&gt;
|          2.5&lt;br /&gt;
|-&lt;br /&gt;
|   31&lt;br /&gt;
| 1A_0535+262           &lt;br /&gt;
|  1366 &lt;br /&gt;
|            2&lt;br /&gt;
|   &lt;br /&gt;
|   63&lt;br /&gt;
| AX_J1740.2-2903       &lt;br /&gt;
|  1410 &lt;br /&gt;
|           ?&lt;br /&gt;
|-&lt;br /&gt;
|   32&lt;br /&gt;
| SAX_J0635.2+0533      &lt;br /&gt;
|  1310 &lt;br /&gt;
|            5&lt;br /&gt;
|   &lt;br /&gt;
|     &lt;br /&gt;
|                       &lt;br /&gt;
|       &lt;br /&gt;
|             &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Gaia Distances =&lt;br /&gt;
'''NOTE: The distances here are for the Gaia source that is ''closest'' to the SIMBAD position for each object. This means that for objects with poorly-determined positions or no identified optical counterpart, the distance is ''INCREDIBLY SUSPECT''.''' Until someone has time to go through source-by-source and clean this up, ''you'' need to check carefully whether the ''Gaia'' source ID listed here ''actually corresponds'' to the object you are looking at.&lt;br /&gt;
The parallaxes are converted to distance by Bailer-Jones et al. (see [https://ui.adsabs.harvard.edu/#abs/2018arXiv180410121B/abstract this paper] and [http://www.mpia.de/homes/calj/gdr2_distances/main.html this webpage]). Again, these should be taken with a hefty grain of salt and are dependent on the priors selected by Bailer-Jones et al.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Source&lt;br /&gt;
! Gaia source ID&lt;br /&gt;
! Gaia distance&lt;br /&gt;
|-&lt;br /&gt;
| [[RX J0101.8-7223]] || 4687492917085083648 || 12.3 (+2.0, -1.7)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[3A 0114+650]] || 524924310153249920 || 6.6 (+1.6, -1.2)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 0115+634]] || 524677469790488960 || 7.2 (+1.5, -1.1)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[RX J0146.9+6121]] || 511220031584305536 || 2.50 (+0.22, -0.19)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J01583+6713]] || 518990967445248256 || 7.4 (+1.1, -0.9)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[Swift J0243.6+6124]] || 465628193526364416 || 6.9 (+1.6, -1.2)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[V 0332+53]] || 444752973131169664 || 5.1 (+1.1, -0.8)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[X Per]] || 168450545792009600 || 0.79 +/- 0.04&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[RX J0440.9+4431]] || 252878401557369088 || 3.2 (+0.7, -0.5)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[1A 0535+26]] || 3441207615229815040 || 2.13 (+0.26, -0.21)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[SAX J0635.2+0533]] || 3131755943105291136 || 1.6 (+2.2, -0.8)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[MXB 0656-07]] || 3052677318793446016 || 5.1 (+1.4, -1.0)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[3A 0726-260]] || 5613494119544761088 || 9.5 (+3.1, -2.2)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[RX J0812.4-3114]] || 5548261400354128768 || 6.8 (+1.2, -1.0)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[GS 0834-430]] || 5523448270462666880 || 5.5 (+2.5, -1.7)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[Vela X-1]] || 5620657678322625920 || 2.42 (+0.19, -0.17)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1036-56]] || 5352018121173519488 || 5.0 (+1.1, -0.8)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[1A 1118-616]] || 5336957010898124160 || 2.93 (+0.26, -0.22)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[Cen X-3]] || 5337498593446516480 || 6.4 (+1.4, -1.1)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[1E1145.1-6141]] || 5334851450481641088 || 9.1 (+2.2, -1.6)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1145-619]] || 5334823859608495104 || 2.23 (+0.20, -0.17)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[GX 301-2]] || 6054569565614460800 || 3.5 (+0.6, -0.5)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[3A 1239-599]] || 6056606788861734912 || 2.9 (+2.4, -1.3)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[GX 304-1]] || 5863533199843070208 || 2.01 (+0.15, -0.13)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[SAX J1324.4-6200]] || 5868517973240268544 || 3.5 (+2.6, -1.7)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[2S 1417-624]] || 5854175187681966464 || 3.8 (+2.8, -1.8)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[SAX J1452.8-5949]] || 5878224015202026240 || 3.0 (+2.6, -1.5)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1538-522]] || 5886085557746480000 || 6.6 (+2.2, -1.5)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[2S 1553-542]] || 5884711610550541440 || 3.5 (+2.6, -1.5)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J16194-2810]] || 6039227323926220544 || 2.3 (+0.8, -0.5)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[Swift J1626.6-5156]] || 5933976985766949376 || 9.8 (+3.2, -2.4)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J16318-4848]] || 5940777877435137024 || 5.2 (+2.8, -1.9)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J16320-4751]] || 5941216101526297856 || 1.3 (+0.6, -0.4)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1626-67]] || 5809528276749789312 || 3.5 (+2.3, -1.3)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J16393-4643]] || 5942638074996489088 || 4.0 (+2.7, -1.7)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J16465-4507]] || 5943246345430928512 || 2.7 (+0.5, -0.4)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[Her X-1]] || 1338822021487330304 || 5.0 (+0.8, -0.6)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[AX J1700.1-4157]] || 5966358530819164544 || 3.4 (+2.6, -1.5)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[OAO 1657-415]] || 5966391894137386240 || 2.2 (+0.7, -0.5)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1700-37]] || 5976382915813535232 || 1.75 (+0.24, -0.19)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1700+24]] || 4571810378118789760 || 0.536 +/- 0.010&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[EXO 1722-363]] || 5974546387756541696 || 4.0 (+2.3, -1.3)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[GX 1+4]] || 4110236324513030656 || 7.6 (+4.3, -2.8)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[2XMM J174016.0-290337]] || 4060143669944331648 || 1.4 (+1.6, -0.5)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[GRO J1744-28]] || 4057539171718068224 || 1.3 (+1.2, -0.5)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J17544-2619]] || 4063908810076415872 || 2.7 (+0.5, -0.4)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[SAX J1802.7-2017]] || 4070968778552176768 || 1.5 (+2.8, -0.7)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[SAX J1808.4-3658]] || 4037867740522970240 || 5.1 (+4.3, -2.6)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[Swift J1816.7-1613]] || 4097679145798118528 || 1.4 (+2.5, -0.7)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[3A 1822-371]] || 6728016172687965568 || 6.1 (+2.7, -1.6)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[GS 1843+00]] || 4278536022438800640 || 2.3 (+2.0, -1.0)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[XTE J1855-026]] || 4255891924062617088 || 8.1 (+2.6, -1.8)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[XTE J1858+034]] || 4280844623194795136 || 1.55 (+0.28, -0.21)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[XTE J1859+083]] || 4310118600596712832 || 2.7 (+2.4, -1.5)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1901+03]] || 4268774665587135488 || 2.2 (+2.2, -1.3)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[XTE J1906+090]] || 4310649149314811776 || 2.8 (+2.4, -1.4)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1907+09]] || 4309225217336729088 || 4.4 (+2.1, -1.3)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 1909+07]] || 4306419980916246656 || 2.6 (+2.3, -1.4)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J19140+0951]] || 4309253392325650176 || 2.8 (+2.4, -1.4)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J19149+1036]] || 4309736146639732352 || 3.0 (+2.5, -1.6)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J19294+1816]] || 4323316622779495680 || 2.9 (+2.5, -1.5)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[XTE J1946+274]] || 2028089540103670144 || 12.6 (+3.9, -2.9)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[KS 1947+300]] || 2031939548802102656 || 15.2 (+3.7, -2.8)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[3A 1954+319]] || 2034031438383765760 || 3.3 (+1.0, -0.7)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[EXO 2030+375]] || 2063791369815322752 || 3.6 (+1.4, -0.9)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[GRO J2058+42]] || 2065653598916388352 || 8.0 (+1.2, -1.0)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[SAX J2103.5+4545]] || 2162805896614571904 || 6.4 (+0.9, -0.7)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J21343+4738]] || 1978365123143522176 || 7.8 (+1.4, -1.1)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[Cep X-4]] || 2178178409188167296 || 10.2 (+2.2, -1.6)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[4U 2206+54]] || 2005653524280214400 || 3.3 +/- 0.4&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[SAX J2239.3+6116]] || 2201091578667140352 || 8.0 (+1.4, -1.1)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[IGR J22534+6243]] || 2207277877757956352 || 8.1 (+2.3, -1.6)&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Updated list of accreting X-ray pulsars (pulse profile extractions) =&lt;br /&gt;
&lt;br /&gt;
This is a list to organize a library of pulse profiles for many of the known accreting X-ray pulsars. For this we scanned the NuSTAR archive at [https://heasarc.gsfc.nasa.gov/docs/archive.html Heasarc] for all objects that are listed in the two [http://astro.uni-tuebingen.de/~xrbcat/ XRB catalogues]. All public obsids are downloaded to `/userdata/data/stierhof/pp-class/&amp;lt;object_name&amp;gt;/&amp;lt;obsid&amp;gt;`. This is more than 350 observations! After reprocessing (this creates a folder `reprocessed` in each obsid folder) the region files have to be created. Right now we are not interested in detailed analysis and for bright outbursts the region choice is not that important. If you want to contribute, please create '''one''' region file for the source and '''one''' for the background. The source should be a circle centered around the brightest part of the image. The background should be an annulus with inner radius as large as the source region, and the outer as large as possible. The source and background region files should be stored in the `reprocessed` folder as `src.reg` and `bkg.reg`. '''Note:''' The regions must be valid for both detector modules!&lt;br /&gt;
&lt;br /&gt;
Once the region files are created it is straight forward to automatically extract all dataset. So please don't change anything else in the folder just yet. You can check the table if the data has been prepared (that is, if the `reprocessed` folder exists) and add the region files. If you do, please indicate it in the corresponding line in the table (searching for the source name should be helpful here).&lt;br /&gt;
&lt;br /&gt;
Once we have all region files collected we can extract the pulse profiles!&lt;br /&gt;
&lt;br /&gt;
==== Notes: ====&lt;br /&gt;
&lt;br /&gt;
If no _cl.fits files are present in the reprocessed folder, this either means that the preparation failed, or that the observation was not done in science mode. In the latter case we ignore the observations for now.&lt;br /&gt;
&lt;br /&gt;
{| class=wikitable&lt;br /&gt;
! Source&lt;br /&gt;
! Class&lt;br /&gt;
! Assignee&lt;br /&gt;
! Pulse Period&lt;br /&gt;
! Has Region&lt;br /&gt;
! Is Prepared&lt;br /&gt;
! Is Processed&lt;br /&gt;
|-&lt;br /&gt;
| [[1A 0535+262]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Vicente&lt;br /&gt;
| 103.47&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[1E 1145.1-6141]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Vicente&lt;br /&gt;
| 298.0&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[2RXP J130159.6-635806]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Vicente&lt;br /&gt;
| 643.0&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[2S 0114+650]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 10008.0&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[2S 1417-624]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Vicente&lt;br /&gt;
| 17.6&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[2S 1553-542]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Vicente&lt;br /&gt;
| 9.28&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[2S 1845-024]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Vicente&lt;br /&gt;
| 94.72&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[3A 1822-371]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| Vicente&lt;br /&gt;
| 0.59&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[3U 1223-62]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Nico&lt;br /&gt;
| 696.0&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[3U 1258-61]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Vicente&lt;br /&gt;
| 272.0&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[4U 0115+63]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 3.61&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[4U 0352+309]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Aafia&lt;br /&gt;
| 837.67&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[4U 0614+09]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.0020964360587002098&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[4U 1538-52]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Aafia&lt;br /&gt;
| 526.42&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[4U 1608-52]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| Vicente&lt;br /&gt;
| 0.0016&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[4U 1626-67]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 7.7&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[4U 1636-536]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.001721&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[4U 1702-429]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.00303&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[4U 1728-34]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.0027548209366391185&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[4U 1901+03]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 2.76&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[4U 1907+09]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Aafia&lt;br /&gt;
| 438.0&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[4U 1909+07]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Aafia&lt;br /&gt;
| 603.6&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[4U 1915-05]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.0037&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[4U 1954+31]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 19400.0&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[4U 2206+54]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 5555.0&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[Aql X-1]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.00182&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[BSD 24-491]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 202.5&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[CXOGlb J174852.7-202124]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.004857&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[Cen X-3]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Vicente&lt;br /&gt;
| 4.8&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[Cep X-4]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 65.35&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[EXO 0748-676]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.0019157088122605363&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[EXO 2030+375]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 41.31&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[GRO J1008-57]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Aafia&lt;br /&gt;
| 93.5&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[GRO J1744-28]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.467&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[GRO J1750-27]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Vicente&lt;br /&gt;
| 4.45&lt;br /&gt;
| X (weird bkg)&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[GRO J2058+42]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 195.25&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[GRS 1741.9-2853]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.001697792869269949&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[GX 1+4]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| Vicente&lt;br /&gt;
| 138.17&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[Ginga 0834-430]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 12.3&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[HD 110432]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 14200.0&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[HD 77581]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 283.0&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[Her X-1]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 1.24&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J00291+5934]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.00167&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J06074+2205]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 373.2&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J11215-5952]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 186.8&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J16320-4751]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 1308.8&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J16358-4726]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 5880.0&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J16393-4643]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Aafia&lt;br /&gt;
| 908.79&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J16418-4532]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Aafia&lt;br /&gt;
| 1246.0&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J16493-4348]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 1093.1&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J16597-3704]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.00951&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J17062-6143]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| Vicente&lt;br /&gt;
| 0.00611&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J17329-2731]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 6680.0&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J17379-3747]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| Vicente&lt;br /&gt;
| 0.002136&lt;br /&gt;
| X (obs2 source?)&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J17480-2446]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.09054&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J17494-3030]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.002659219644588837&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J17498-2921]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.002494&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J17511-3057]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.00408&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J17544-2619]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 71.49&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J17591-2342]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.001897&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J18027-2016]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 139.6&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J18219-1347]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 52.46&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J18245-2452]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.00393&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J19294+1816]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 12.44&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[IGR J21343+4738]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 322.7&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[KS 1947+300]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 18.7&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[MAXI J0655-013]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 1129.1&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[MAXI J0903-531]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 14.05&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[MAXI J0911-655]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.00294&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[MAXI J1409-619]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 503.0&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[MAXI J1816-195]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.0018917896329928112&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[MXB 0656-072]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Nico&lt;br /&gt;
| 160.7&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[MXB 1659-29]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.00176&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[MXB 1730-335]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.0032679738562091504&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[OAO 1657-415]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Vicente&lt;br /&gt;
| 37.03&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[PSR B1259-63]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.05&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[PSR J1023+0038]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.001687&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[PSR J1723-2837]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.00186219739292365&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[SAX J1324.4-6200]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 172.84&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[SAX J1748.9-2021]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.00226&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[SAX J1808.4-3658]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.00249&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[SAX J2103.5+4545]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 358.61&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[SGR 0755-2933]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 308.0&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[SRGA J124404.1-632232]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Aafia&lt;br /&gt;
| 538.7&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[SRGE J204319.0+443820]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 741.8&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[SWIFT J1749.4-2807]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.00193&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[SWIFT J1756.9-2508]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.005493&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[SWIFT J1843.5-0343]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 42.5&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[Sct X-1]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 112.0&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[Swift J0243.6+6124]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 9.87&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[Swift J0840.7-3516]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 8.96&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[Swift J1626.6-5156]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 15.36&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[Swift J1816.7-1613]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| Nico&lt;br /&gt;
| 143.69&lt;br /&gt;
| X (weird bkg)&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[V0332+53]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 4.4&lt;br /&gt;
| x&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[XMM J174457-2850.3]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 5.2521&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[XSS J12270-4859]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.001686&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[XTE J1739-285]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.00258732212160414&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[XTE J1748-361]]&lt;br /&gt;
| LMXB&lt;br /&gt;
| &lt;br /&gt;
| 0.0018867924528301887&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[XTE J1829-098]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 7.85&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[XTE J1858+034]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 221.0&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[XTE J1859+083]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 9.79&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[XTE J1946+274]]&lt;br /&gt;
| HMXB&lt;br /&gt;
| &lt;br /&gt;
| 15.8&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Correlation between luminosity and CRSF energy =&lt;br /&gt;
In recent years more and more sources have been observed at different luminosities, allowing us to find correlation between the luminosity and the cyclotron line energy. A summary of the current state of the observations can be found on this page:&lt;br /&gt;
[[CRSF energy as function of luminosity]]&lt;br /&gt;
&lt;br /&gt;
= Assignments =&lt;br /&gt;
Our collaboration has assigned one or two sources to each member to take care of, i.e., to put together the most important information and keep the page up to date in case new data are available or new papers are published. [[X-ray pulsar assignments|The list]] can only be accessed if logged in.&lt;/div&gt;</summary>
		<author><name>Thalhammer</name></author>
	</entry>
	<entry>
		<id>https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Guided_Tours_and_Public_Outreach&amp;diff=3070</id>
		<title>Guided Tours and Public Outreach</title>
		<link rel="alternate" type="text/html" href="https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Guided_Tours_and_Public_Outreach&amp;diff=3070"/>
		<updated>2023-11-14T17:28:36Z</updated>

		<summary type="html">&lt;p&gt;Thalhammer: /* Monthly public tours */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;On this pages you can find all information needed to guide a tour through our observatory for public people.&lt;br /&gt;
&lt;br /&gt;
At least, that's the aim of this page, so please add information if you think its missing!&lt;br /&gt;
&lt;br /&gt;
= Platform =&lt;br /&gt;
&lt;br /&gt;
'''The following is important:'''&amp;lt;br&amp;gt;&lt;br /&gt;
Tours are officially '''organized''' by the [http://foerderverein-sternwarte-bamberg.de Foerderverein of the observatory], but '''operated''' by the observatory staff to be insured through the university!&lt;br /&gt;
&lt;br /&gt;
The main platform for the general public is&amp;lt;br&amp;gt;[http://foerderverein-sternwarte-bamberg.de/fuehrungen http://foerderverein-sternwarte-bamberg.de/fuehrungen].&lt;br /&gt;
&lt;br /&gt;
Here, tours can be ordered in two different ways:&lt;br /&gt;
* single persons and smaller groups can directly book public and regular guided tours via our webform at&amp;lt;br&amp;gt;https://www.sternwarte.uni-erlangen.de/guided-tours/&lt;br /&gt;
* larger groups may directly ask for a tour at a separate date either by email to&amp;lt;br&amp;gt;[mailto:fuehrungen@foerderverein-sternwarte-bamberg.de fuehrungen@foerderverein-sternwarte-bamberg.de]&amp;lt;br&amp;gt;or by phone. The email address is a forwarding to a certain person of the mailing list (see below).&lt;br /&gt;
&lt;br /&gt;
The source code of the webform for booking a public tour can be found in the GIT repository at&amp;lt;br&amp;gt;&lt;br /&gt;
[https://www.sternwarte.uni-erlangen.de/gitlab/webmaster/guided-tours https://www.sternwarte.uni-erlangen.de/gitlab/webmaster/guided-tours].&amp;lt;br&amp;gt;&lt;br /&gt;
All pushes to the master branch are automatically deployed at the official URL above!&lt;br /&gt;
&lt;br /&gt;
== Mailing List / Current &amp;quot;staff&amp;quot; ==&lt;br /&gt;
&lt;br /&gt;
All people interested in giving guided tours are member of the mailing list&amp;lt;br&amp;gt;&lt;br /&gt;
[mailto:astro-fuehrungen@lists.fau.de astro-fuehrungen@lists.fau.de]&amp;lt;br&amp;gt;&lt;br /&gt;
Please '''do not share''' this address with anybody outside of the observatory!&lt;br /&gt;
If you're not on the list but interested in giving tours, just ask Max to add you :-)&lt;br /&gt;
&lt;br /&gt;
New tours without a guide yet are usually announced via this list. See [[Mailing lists]] for the list administrator.&lt;br /&gt;
&lt;br /&gt;
In charge of organization:&lt;br /&gt;
* Katrin&lt;br /&gt;
&lt;br /&gt;
Currently, the following people give tours on a regular basis:&lt;br /&gt;
* Steven&lt;br /&gt;
* Christian&lt;br /&gt;
* Aafia&lt;br /&gt;
* Amy&lt;br /&gt;
* Julia&lt;br /&gt;
* Philipp T.&lt;br /&gt;
* Alexey&lt;br /&gt;
* Katharina&lt;br /&gt;
&lt;br /&gt;
= Tip policy =&lt;br /&gt;
&lt;br /&gt;
The group is informed beforehand about the rule of tip. &lt;br /&gt;
For the guides the following applies for the money you get during the tour:&lt;br /&gt;
During the week (Monday till Friday) the factor for the donation, which goes directly to the Foerderverein, is 1/3 (33%), the rest (2/3) is your personal tip.&lt;br /&gt;
For weekend tours (Saturday, Sunday) the factor for the donation is 1/4 (25%).&lt;br /&gt;
&lt;br /&gt;
Make sure to hand in the donations immediately after your tour. Put the money on Ingos desk with a note stating which tour you gave, how much you received and how many people were there.&lt;br /&gt;
&lt;br /&gt;
= Offering Tours =&lt;br /&gt;
&lt;br /&gt;
At some point you're perhaps asked to give a tour or if it is possible to have one on a specific date. The latter might occur if Edith is out of her office and her telephone is redirected. In those cases you should know ''and'' check following things:&lt;br /&gt;
* '''Who is asking''' for a tour? &amp;lt;br&amp;gt; If you're on the phone ask for a name and write down the phone number where the person can be called!&lt;br /&gt;
* The '''number of people should be between 15 and 25'''. &amp;lt;br&amp;gt; Of course, the boundary conditions depend on the person guiding the tour. In a case of doubt, ask the guide or, if none is found yet, you simply can't promise that there will be a tour! In that case you may offer to look for a guide giving the tour anyway (and call the person back), but again don't make any promises! A list of people offering tours can be found below.&lt;br /&gt;
* What is the '''average age of the persons attending''' the tour? &amp;lt;br&amp;gt; That's an important point since the content of a tour differs between children and adults, of course. Furthermore some guides have favorite age groups!&lt;br /&gt;
* Carefully check the '''date and time of the tour'''!&lt;br /&gt;
** It's most likely to find a guide if the weekday of a tour is '''between Monday and Thursday'''. Friday might work if it is before noon, otherwise people might be on the way into the weekend. In all other cases you may offer to look for a guide giving the tour anyway (see the point about the group size above).&lt;br /&gt;
** Make sure that there is '''no tour scheduled already'''! For that look into our online calendar (the link can be found below) and on the whiteboard in the copying machine office.&lt;br /&gt;
** Related to the last point ensure that there is '''no lab course''' running at the date! The lab course is also marked in our online calendar.&lt;br /&gt;
** Usually, a tour will take '''about 1.5 to 2 hours'''.&lt;br /&gt;
* Clarify the '''costs for a tour''' beforehand!! &amp;lt;br&amp;gt; Unfortunately, we are '''not allowed to ask for money''' for giving a tour! The only way for getting money is to tell the people that they are welcomed to '''donate money to the [http://foerderverein-sternwarte-bamberg.de/| Foerderverein der Sternwarte]'''. In nearly every case the people or the one asking for a tour will pay something. A rule of thumb is that '''every person donates 3 EUR''' (for children 2 EUR are alright as well). &amp;lt;br&amp;gt; __For your ears only__: 1 EUR per attended person of the donated money will be transferred to the Förderverein (the current treasurer is Ingo, leave the money on his desk with a short note stating the number of people and what kind of a tour this was), the rest is for the guide! There will be a contact phone-number available, best would be to call the contacts-person before the tour to tell them these infos...&lt;br /&gt;
* '''Observing with our telescopes''' is possible, of course, but only in case of '''night and cloudless weather'''! No kidding, some people are not aware of these facts... &amp;lt;br&amp;gt; (&amp;quot;The day is too bright to see stars.&amp;quot;, &amp;quot;I'm sorry, we can't look trough the clouds.&amp;quot;, &amp;quot;The weather forecast is too uncertain, we can't promise.&amp;quot;) Please check if someone else has already signed in for one of the telescopes on the day/night of the guided tour!  '''IMPORTANT:'''  Be aware that you are not allowed to operate the telescopes on you own, there ALWAYS has to be at least a second person around. To assure that, you either have to have a second person from the observatory present (at least in the main building) or you have to set up AND disassemble everything while the people from the tour are there. Otherwise no observations are allowed to take place!&lt;br /&gt;
* If all the above points are clarified '''mark the tour''' &amp;lt;br&amp;gt; in our [https://www.sternwarte.uni-erlangen.de/calendar/ online calendar] and the whiteboard in the copying machine office. You have to be at a machine at the observatory to have access to the online calendar (to be more precisely: you're machine has to have an internal IP-address). &amp;lt;br&amp;gt; The entry into the online calendar, besides the date and time, should include &amp;quot;for whom is the tour and the group size, contact person and phone number, name of the guide giving the tour&amp;quot;. &amp;lt;br&amp;gt; The whiteboard template is as follows: &amp;quot;date, for whom is the tour, time, guide&amp;quot;&lt;br /&gt;
&lt;br /&gt;
= Giving a tour =&lt;br /&gt;
&lt;br /&gt;
Each tour has several stations, where you can show things or talk to the people. Useful information and experiences about that is listed below. It might be helpful as well to read the article about [[intern:popular_science:start|popular science]] in case you want or have to (if somebody asks) explain scientific aspects.&lt;br /&gt;
&lt;br /&gt;
== Preparation ==&lt;br /&gt;
&lt;br /&gt;
'''Before the tour'''&lt;br /&gt;
* Shut the doors of all offices in the main building (at least on the ground level) for several reasons: people are not allowed to walk in there and some of us are still working there during tours!&lt;br /&gt;
* Remove the northern hemisphere from the model of the inner solar system located in the entrance hall (you may put it into the Knigge room)&lt;br /&gt;
* Switch the lights on you need:&lt;br /&gt;
** entrance hall&lt;br /&gt;
** meteorite showcase (switch is on the right next to it)&lt;br /&gt;
** hallway to the meridian building; here are multiple switches&lt;br /&gt;
*** main light: right next to the door of the hallway or the backdoor of the main building (labeled &amp;quot;Meridian&amp;quot;)&lt;br /&gt;
*** info panels: on the opposite wall to the door next to the blue cupboard&lt;br /&gt;
*** showcases and Blinkkomparator: in the cutout box up the few stairs on the right wall close to the library, labeled &amp;quot;Linke Steckdosen&amp;quot;&lt;br /&gt;
* In case of observations&lt;br /&gt;
** make sure that you are '''never''' alone in the domes! There always have to be at least two people present.&lt;br /&gt;
** carry the needed oculars into the domes (for observations with the naked eye, the 40cm telescope is strongly recommended)&lt;br /&gt;
** do __not__ open the domes (first, it might start raining while nobody is there, and it's more fun for you to let the people do it)&lt;br /&gt;
** do __not__ remove the dust covers of the telescopes (wait until the dome has been opened)&lt;br /&gt;
** read the [[remeis:start|guide how to operate the telescopes and mountings]]&lt;br /&gt;
** after observing: shut down the telescope mounting, put the dust covers back on and close the domes&lt;br /&gt;
* In case of showing nice pictures&lt;br /&gt;
** make sure enough chairs are available&lt;br /&gt;
** switch on the beamer in the library, log into the machine and start your presentation, picture-viewer, ...&lt;br /&gt;
 &lt;br /&gt;
'''After the tour'''&lt;br /&gt;
* Switch the lights off&lt;br /&gt;
* Logout of the used machines and switch the beamer off&lt;br /&gt;
* Put on the dust covers of the telescopes in the hallway&lt;br /&gt;
* Protect the photo plates on the Blinkkomparator from getting dusty&lt;br /&gt;
* '''Move the entry from the whiteboard''' in the copying machine office '''to the list attached to the pin-board''' next to it&lt;br /&gt;
&lt;br /&gt;
== Material and Presentations ==&lt;br /&gt;
*Collected information valuable for guided tours: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours'' and ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/guidedtour.pdf''&lt;br /&gt;
&lt;br /&gt;
*A merger of (picture/video) presentations given at guided tours: &amp;lt;br&amp;gt; ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/guidedtour.odp'' &lt;br /&gt;
&lt;br /&gt;
*and according videos in  &amp;lt;br&amp;gt; ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/videos/''&lt;br /&gt;
&lt;br /&gt;
*Research and activities at Remeis from the radio to the gamma-rays (Tobi Beuchert): &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Andrea_tour_material/observations_allwavelength_remeisresearch_beuchert.pdf''&lt;br /&gt;
&lt;br /&gt;
*A presentation showing the astrophotography done at the observatory: &amp;lt;br&amp;gt; ''/data/media/slideshow_astrophotographie/optische_Quellen.pdf''&lt;br /&gt;
&lt;br /&gt;
*A video tour with Joern: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Joerns_example_tour''&lt;br /&gt;
&lt;br /&gt;
*A video tour with Uli (only hallway): &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Ulis_example_tour_hall_2019''&lt;br /&gt;
&lt;br /&gt;
*A complete tour by Sebastian Müller: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Sebastians_example_tour''&lt;br /&gt;
&lt;br /&gt;
*Presentations for tours by Andrea Gokus: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Andrea_tour_material'' &amp;lt;br&amp;gt; Contains presentations about the solar system (solar_system.pdf), neutrinos (neutrino_talk.pdf), overview of different objet types (impressions_universe.pdf)&lt;br /&gt;
&lt;br /&gt;
*Andreas tour notes: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Andrea_tour_material/Sternwarten_Fuehrungsnotizen.pdf''&lt;br /&gt;
&lt;br /&gt;
*Amys tour notes: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Guided_Tour_Information_Amy.pdf''&lt;br /&gt;
&lt;br /&gt;
*Tobis tour notes: &amp;lt;br&amp;gt; ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/guidedtour.pdf''&lt;br /&gt;
&lt;br /&gt;
*Information on clocks: &amp;lt;br&amp;gt; ''/data/media/history/2009-01_KlassikUhren_Poehlmann_Max_Ort.pdf''&lt;br /&gt;
&lt;br /&gt;
*Information on history of the observatory and the collection: &amp;lt;br&amp;gt; ''/data/media/history/AstronomischeSammlung.pdf''&lt;br /&gt;
&lt;br /&gt;
*History of the observatory (Litten): &amp;lt;br&amp;gt; ''/data/media/history/Litten-1.pdf'' &amp;lt;br&amp;gt; ''/data/media/history/Litten-2.pdf''&lt;br /&gt;
&lt;br /&gt;
*Last will of Dr. Karl Remeis: &amp;lt;br&amp;gt; ''/data/media/history/Testament_Karl_Remeis.pdf''&lt;br /&gt;
&lt;br /&gt;
*Die Remeis-Sternwarte zu Bamberg 1889-1939, E. Zinner: &amp;lt;br&amp;gt; [https://articles.adsabs.harvard.edu/cgi-bin/nph-iarticle_query?1939VeBam...4....1Z&amp;amp;amp;data_type=PDF_HIGH&amp;amp;amp;whole_paper=YES&amp;amp;amp;type=PRINTER&amp;amp;amp;filetype=.pdf ADS]&lt;br /&gt;
&lt;br /&gt;
== Picture presentation ==&lt;br /&gt;
&lt;br /&gt;
There are different modes for the beamer (e.g. presentation, videos, graphics etc.) which result in a different appearance of the images. Make sure to select a presentation mode in which the pictures appear in an appropriate brightness on the screen. (I think &amp;quot;graphics&amp;quot; was a good one).&lt;br /&gt;
&lt;br /&gt;
== Telescopes in the domes ==&lt;br /&gt;
It's nice to show the main mirror to the people so that they can see themselves. To do so, just turn down the telescope in declination. This is only possible for the 40cm as the 50cm-Mount has a mechanical stop.&lt;br /&gt;
&lt;br /&gt;
Sometimes people want to know what we do with the tiny, little telescopes attached on the side of the big ones. Those are guiding-scopes. You can attach a camera to them and let it take pictures of one star. If the star moves (what it shouldn't do) a correction signal is sent to the mount to compensate the movement of the star. Stars can &amp;quot;move&amp;quot; in an image for example due to impreciseness of the mount. &lt;br /&gt;
&lt;br /&gt;
The (dusty) plate in front of the 40cm mirror is called &amp;quot;Schmid-Platte&amp;quot;. It is used to improve the imaging of the telescope and to correct several errors of the mirrors like coma and field-curvature. As it is very sensitive to scratching, it won't be cleaned and left dusty. But the dust has hardly any effect on the images as it lays far outside of the focusplane. The optical design is similar to a Ritchey-Chrétien type regarding the capability, but has a spherical main mirror, an aspherical secondary mirror and a lens-corrector (=Schmidt-plate). The price of the telescope and the mount is roughly about 25.000€ altogether.&lt;br /&gt;
&lt;br /&gt;
The 50cm doesn't have a Schmid-Platte but a corrector (lenses) placed in the OAZ. It has an elliptical main mirror and a spherical secondary mirror (Corrected Dall Kirkham). The price of the telescope and the mount is roughly about 65.000€. The secondary mirror is, compared to the size of the main mirror, significantly larger than the 40cm-sec. mirror. This results in a better luminosity an a larger, flat-field which is important for taking images. We can achieve tracking accuracies of about 10min without guiding.&lt;br /&gt;
&lt;br /&gt;
== Monthly public tours ==&lt;br /&gt;
NOTE: even if there is already someone listed for a tour, please enter you availability&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Date &lt;br /&gt;
! Language&lt;br /&gt;
! Time&lt;br /&gt;
! Type&lt;br /&gt;
! Available Guides&lt;br /&gt;
! Backup&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/11/14 &lt;br /&gt;
| German&lt;br /&gt;
| 6 pm &lt;br /&gt;
| Tour for children &lt;br /&gt;
| &lt;br /&gt;
| Katharina&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/11/28&lt;br /&gt;
| German&lt;br /&gt;
| 6 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| Katharina&lt;br /&gt;
| Philipp&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/12/05&lt;br /&gt;
| English&lt;br /&gt;
| 6 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| Federico&lt;br /&gt;
| Philipp, Katharina&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/12/12&lt;br /&gt;
| German&lt;br /&gt;
| 6 pm&lt;br /&gt;
| Tour for children&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/12/19&lt;br /&gt;
| German&lt;br /&gt;
| 6 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| Philipp&lt;br /&gt;
| &lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2024/01/09&lt;br /&gt;
| English&lt;br /&gt;
| 6 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| Federico&lt;br /&gt;
| &lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2024/01/19&lt;br /&gt;
| German&lt;br /&gt;
| 6 pm&lt;br /&gt;
| Tour for children (option 1)&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2024/01/23&lt;br /&gt;
| German&lt;br /&gt;
| 6 pm&lt;br /&gt;
| Tour for children (option 2)&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2024/01/30&lt;br /&gt;
| German&lt;br /&gt;
| 6 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2024/02/06&lt;br /&gt;
| English&lt;br /&gt;
| 6 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2024/02/13&lt;br /&gt;
| German&lt;br /&gt;
| 6 pm&lt;br /&gt;
| Tour for children&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2024/02/27&lt;br /&gt;
| German&lt;br /&gt;
| 6 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Tours looking for a guide ==&lt;br /&gt;
ATTENTION: tours are not sorted by the date of the tour, but the time when they were requested&lt;br /&gt;
&lt;br /&gt;
NOTE: please enter you availability even if there is already another name listed.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Date &lt;br /&gt;
! Language&lt;br /&gt;
! Time&lt;br /&gt;
! Organizer &lt;br /&gt;
! Additional information &lt;br /&gt;
! # People&lt;br /&gt;
! Observing&lt;br /&gt;
! Available Guides&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/12/14&lt;br /&gt;
| German&lt;br /&gt;
| 11am to 12:30pm&lt;br /&gt;
| DG school&lt;br /&gt;
| 5th grade&lt;br /&gt;
| 24 children and 2 adults &lt;br /&gt;
| no&lt;br /&gt;
| &lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Observing ==&lt;br /&gt;
&lt;br /&gt;
[[Category:Internal]]&lt;/div&gt;</summary>
		<author><name>Thalhammer</name></author>
	</entry>
	<entry>
		<id>https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Guided_Tours_and_Public_Outreach&amp;diff=3015</id>
		<title>Guided Tours and Public Outreach</title>
		<link rel="alternate" type="text/html" href="https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Guided_Tours_and_Public_Outreach&amp;diff=3015"/>
		<updated>2023-10-25T15:07:20Z</updated>

		<summary type="html">&lt;p&gt;Thalhammer: /* Tours looking for a guide */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;On this pages you can find all information needed to guide a tour through our observatory for public people.&lt;br /&gt;
&lt;br /&gt;
At least, that's the aim of this page, so please add information if you think its missing!&lt;br /&gt;
&lt;br /&gt;
= Platform =&lt;br /&gt;
&lt;br /&gt;
'''The following is important:'''&amp;lt;br&amp;gt;&lt;br /&gt;
Tours are officially '''organized''' by the [http://foerderverein-sternwarte-bamberg.de Foerderverein of the observatory], but '''operated''' by the observatory staff to be insured through the university!&lt;br /&gt;
&lt;br /&gt;
The main platform for the general public is&amp;lt;br&amp;gt;[http://foerderverein-sternwarte-bamberg.de/fuehrungen http://foerderverein-sternwarte-bamberg.de/fuehrungen].&lt;br /&gt;
&lt;br /&gt;
Here, tours can be ordered in two different ways:&lt;br /&gt;
* single persons and smaller groups can directly book public and regular guided tours via our webform at&amp;lt;br&amp;gt;https://www.sternwarte.uni-erlangen.de/guided-tours/&lt;br /&gt;
* larger groups may directly ask for a tour at a separate date either by email to&amp;lt;br&amp;gt;[mailto:fuehrungen@foerderverein-sternwarte-bamberg.de fuehrungen@foerderverein-sternwarte-bamberg.de]&amp;lt;br&amp;gt;or by phone. The email address is a forwarding to a certain person of the mailing list (see below).&lt;br /&gt;
&lt;br /&gt;
The source code of the webform for booking a public tour can be found in the GIT repository at&amp;lt;br&amp;gt;&lt;br /&gt;
[https://www.sternwarte.uni-erlangen.de/gitlab/webmaster/guided-tours https://www.sternwarte.uni-erlangen.de/gitlab/webmaster/guided-tours].&amp;lt;br&amp;gt;&lt;br /&gt;
All pushes to the master branch are automatically deployed at the official URL above!&lt;br /&gt;
&lt;br /&gt;
== Mailing List / Current &amp;quot;staff&amp;quot; ==&lt;br /&gt;
&lt;br /&gt;
All people interested in giving guided tours are member of the mailing list&amp;lt;br&amp;gt;&lt;br /&gt;
[mailto:astro-fuehrungen@lists.fau.de astro-fuehrungen@lists.fau.de]&amp;lt;br&amp;gt;&lt;br /&gt;
Please '''do not share''' this address with anybody outside of the observatory!&lt;br /&gt;
If you're not on the list but interested in giving tours, just ask Max to add you :-)&lt;br /&gt;
&lt;br /&gt;
New tours without a guide yet are usually announced via this list. See [[Mailing lists]] for the list administrator.&lt;br /&gt;
&lt;br /&gt;
In charge of organization:&lt;br /&gt;
* Katrin&lt;br /&gt;
&lt;br /&gt;
Currently, the following people give tours on a regular basis:&lt;br /&gt;
* Dominic &lt;br /&gt;
* Ole&lt;br /&gt;
* Steven&lt;br /&gt;
* Christian&lt;br /&gt;
* Aafia&lt;br /&gt;
* Amy&lt;br /&gt;
* Julia&lt;br /&gt;
* Philipp T.&lt;br /&gt;
&lt;br /&gt;
= Tip policy =&lt;br /&gt;
&lt;br /&gt;
The group is informed beforehand about the rule of tip. &lt;br /&gt;
For the guides the following applies for the money you get during the tour:&lt;br /&gt;
During the week (Monday till Friday) the factor for the donation, which goes directly to the Foerderverein, is 1/3 (33%), the rest (2/3) is your personal tip.&lt;br /&gt;
For weekend tours (Saturday, Sunday) the factor for the donation is 1/4 (25%).&lt;br /&gt;
&lt;br /&gt;
Make sure to hand in the donations immediately after your tour. Put the money on Ingos desk with a note stating which tour you gave, how much you received and how many people were there.&lt;br /&gt;
&lt;br /&gt;
= Offering Tours =&lt;br /&gt;
&lt;br /&gt;
At some point you're perhaps asked to give a tour or if it is possible to have one on a specific date. The latter might occur if Edith is out of her office and her telephone is redirected. In those cases you should know ''and'' check following things:&lt;br /&gt;
* '''Who is asking''' for a tour? &amp;lt;br&amp;gt; If you're on the phone ask for a name and write down the phone number where the person can be called!&lt;br /&gt;
* The '''number of people should be between 15 and 25'''. &amp;lt;br&amp;gt; Of course, the boundary conditions depend on the person guiding the tour. In a case of doubt, ask the guide or, if none is found yet, you simply can't promise that there will be a tour! In that case you may offer to look for a guide giving the tour anyway (and call the person back), but again don't make any promises! A list of people offering tours can be found below.&lt;br /&gt;
* What is the '''average age of the persons attending''' the tour? &amp;lt;br&amp;gt; That's an important point since the content of a tour differs between children and adults, of course. Furthermore some guides have favorite age groups!&lt;br /&gt;
* Carefully check the '''date and time of the tour'''!&lt;br /&gt;
** It's most likely to find a guide if the weekday of a tour is '''between Monday and Thursday'''. Friday might work if it is before noon, otherwise people might be on the way into the weekend. In all other cases you may offer to look for a guide giving the tour anyway (see the point about the group size above).&lt;br /&gt;
** Make sure that there is '''no tour scheduled already'''! For that look into our online calendar (the link can be found below) and on the whiteboard in the copying machine office.&lt;br /&gt;
** Related to the last point ensure that there is '''no lab course''' running at the date! The lab course is also marked in our online calendar.&lt;br /&gt;
** Usually, a tour will take '''about 1.5 to 2 hours'''.&lt;br /&gt;
* Clarify the '''costs for a tour''' beforehand!! &amp;lt;br&amp;gt; Unfortunately, we are '''not allowed to ask for money''' for giving a tour! The only way for getting money is to tell the people that they are welcomed to '''donate money to the [http://foerderverein-sternwarte-bamberg.de/| Foerderverein der Sternwarte]'''. In nearly every case the people or the one asking for a tour will pay something. A rule of thumb is that '''every person donates 3 EUR''' (for children 2 EUR are alright as well). &amp;lt;br&amp;gt; __For your ears only__: 1 EUR per attended person of the donated money will be transferred to the Förderverein (the current treasurer is Ingo, leave the money on his desk with a short note stating the number of people and what kind of a tour this was), the rest is for the guide! There will be a contact phone-number available, best would be to call the contacts-person before the tour to tell them these infos...&lt;br /&gt;
* '''Observing with our telescopes''' is possible, of course, but only in case of '''night and cloudless weather'''! No kidding, some people are not aware of these facts... &amp;lt;br&amp;gt; (&amp;quot;The day is too bright to see stars.&amp;quot;, &amp;quot;I'm sorry, we can't look trough the clouds.&amp;quot;, &amp;quot;The weather forecast is too uncertain, we can't promise.&amp;quot;) Please check if someone else has already signed in for one of the telescopes on the day/night of the guided tour!&lt;br /&gt;
* If all the above points are clarified '''mark the tour''' &amp;lt;br&amp;gt; in our [https://www.sternwarte.uni-erlangen.de/calendar/ online calendar] and the whiteboard in the copying machine office. You have to be at a machine at the observatory to have access to the online calendar (to be more precisely: you're machine has to have an internal IP-address). &amp;lt;br&amp;gt; The entry into the online calendar, besides the date and time, should include &amp;quot;for whom is the tour and the group size, contact person and phone number, name of the guide giving the tour&amp;quot;. &amp;lt;br&amp;gt; The whiteboard template is as follows: &amp;quot;date, for whom is the tour, time, guide&amp;quot;&lt;br /&gt;
&lt;br /&gt;
= Giving a tour =&lt;br /&gt;
&lt;br /&gt;
Each tour has several stations, where you can show things or talk to the people. Useful information and experiences about that is listed below. It might be helpful as well to read the article about [[intern:popular_science:start|popular science]] in case you want or have to (if somebody asks) explain scientific aspects.&lt;br /&gt;
&lt;br /&gt;
== Preparation ==&lt;br /&gt;
&lt;br /&gt;
'''Before the tour'''&lt;br /&gt;
* Shut the doors of all offices in the main building (at least on the ground level) for several reasons: people are not allowed to walk in there and some of us are still working there during tours!&lt;br /&gt;
* Remove the northern hemisphere from the model of the inner solar system located in the entrance hall (you may put it into the Knigge room)&lt;br /&gt;
* Switch the lights on you need:&lt;br /&gt;
** entrance hall&lt;br /&gt;
** meteorite showcase (switch is on the right next to it)&lt;br /&gt;
** hallway to the meridian building; here are multiple switches&lt;br /&gt;
*** main light: right next to the door of the hallway or the backdoor of the main building (labeled &amp;quot;Meridian&amp;quot;)&lt;br /&gt;
*** info panels: on the opposite wall to the door next to the blue cupboard&lt;br /&gt;
*** showcases and Blinkkomparator: in the cutout box up the few stairs on the right wall close to the library, labeled &amp;quot;Linke Steckdosen&amp;quot;&lt;br /&gt;
* In case of observations&lt;br /&gt;
** carry the needed oculars into the domes (for observations with the naked eye, the 40cm telescope is strongly recommended)&lt;br /&gt;
** do __not__ open the domes (first, it might start raining while nobody is there, and it's more fun for you to let the people do it)&lt;br /&gt;
** do __not__ remove the dust covers of the telescopes (wait until the dome has been opened)&lt;br /&gt;
** read the [[remeis:start|guide how to operate the telescopes and mountings]]&lt;br /&gt;
* In case of showing nice pictures&lt;br /&gt;
** make sure enough chairs are available&lt;br /&gt;
** switch on the beamer in the library, log into the machine and start your presentation, picture-viewer, ...&lt;br /&gt;
 &lt;br /&gt;
'''After the tour'''&lt;br /&gt;
* Switch the lights off&lt;br /&gt;
* Shut down the telescope mounting, put the dust covers back on and close the domes&lt;br /&gt;
* Logout of the used machines and switch the beamer off&lt;br /&gt;
* Put on the dust covers of the telescopes in the hallway&lt;br /&gt;
* Protect the photo plates on the Blinkkomparator from getting dusty&lt;br /&gt;
* '''Move the entry from the whiteboard''' in the copying machine office '''to the list attached to the pin-board''' next to it&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Material and Presentations ==&lt;br /&gt;
*Collected information valuable for guided tours: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours'' and ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/guidedtour.pdf''&lt;br /&gt;
&lt;br /&gt;
*A merger of (picture/video) presentations given at guided tours: &amp;lt;br&amp;gt; ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/guidedtour.odp'' &lt;br /&gt;
&lt;br /&gt;
*and according videos in  &amp;lt;br&amp;gt; ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/videos/''&lt;br /&gt;
&lt;br /&gt;
*Research and activities at Remeis from the radio to the gamma-rays (Tobi Beuchert): &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Andrea_tour_material/observations_allwavelength_remeisresearch_beuchert.pdf''&lt;br /&gt;
&lt;br /&gt;
*A presentation showing the astrophotography done at the observatory: &amp;lt;br&amp;gt; ''/data/media/slideshow_astrophotographie/optische_Quellen.pdf''&lt;br /&gt;
&lt;br /&gt;
*A video tour with Joern: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Joerns_example_tour''&lt;br /&gt;
&lt;br /&gt;
*A video tour with Uli (only hallway): &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Ulis_example_tour_hall_2019''&lt;br /&gt;
&lt;br /&gt;
*A complete tour by Sebastian Müller: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Sebastians_example_tour''&lt;br /&gt;
&lt;br /&gt;
*Presentations for tours by Andrea Gokus: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Andrea_tour_material'' &amp;lt;br&amp;gt; Contains presentations about the solar system (solar_system.pdf), neutrinos (neutrino_talk.pdf), overview of different objet types (impressions_universe.pdf)&lt;br /&gt;
&lt;br /&gt;
*Andreas tour notes: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Andrea_tour_material/Sternwarten_Fuehrungsnotizen.pdf''&lt;br /&gt;
&lt;br /&gt;
*Amys tour notes: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Guided_Tour_Information_Amy.pdf''&lt;br /&gt;
&lt;br /&gt;
*Tobis tour notes: &amp;lt;br&amp;gt; ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/guidedtour.pdf''&lt;br /&gt;
&lt;br /&gt;
*Information on clocks: &amp;lt;br&amp;gt; ''/data/media/history/2009-01_KlassikUhren_Poehlmann_Max_Ort.pdf''&lt;br /&gt;
&lt;br /&gt;
*Information on history of the observatory and the collection: &amp;lt;br&amp;gt; ''/data/media/history/AstronomischeSammlung.pdf''&lt;br /&gt;
&lt;br /&gt;
*History of the observatory (Litten): &amp;lt;br&amp;gt; ''/data/media/history/Litten-1.pdf'' &amp;lt;br&amp;gt; ''/data/media/history/Litten-2.pdf''&lt;br /&gt;
&lt;br /&gt;
*Last will of Dr. Karl Remeis: &amp;lt;br&amp;gt; ''/data/media/history/Testament_Karl_Remeis.pdf''&lt;br /&gt;
&lt;br /&gt;
*Die Remeis-Sternwarte zu Bamberg 1889-1939, E. Zinner: &amp;lt;br&amp;gt; [https://articles.adsabs.harvard.edu/cgi-bin/nph-iarticle_query?1939VeBam...4....1Z&amp;amp;amp;data_type=PDF_HIGH&amp;amp;amp;whole_paper=YES&amp;amp;amp;type=PRINTER&amp;amp;amp;filetype=.pdf ADS]&lt;br /&gt;
&lt;br /&gt;
== Picture presentation ==&lt;br /&gt;
&lt;br /&gt;
There are different modes for the beamer (e.g. presentation, videos, graphics etc.) which result in a different appearance of the images. Make sure to select a presentation mode in which the pictures appear in an appropriate brightness on the screen. (I think &amp;quot;graphics&amp;quot; was a good one).&lt;br /&gt;
&lt;br /&gt;
== Telescopes in the domes ==&lt;br /&gt;
It's nice to show the main mirror to the people so that they can see themselves. To do so, just turn down the telescope in declination. This is only possible for the 40cm as the 50cm-Mount has a mechanical stop.&lt;br /&gt;
&lt;br /&gt;
Sometimes people want to know what we do with the tiny, little telescopes attached on the side of the big ones. Those are guiding-scopes. You can attach a camera to them and let it take pictures of one star. If the star moves (what it shouldn't do) a correction signal is sent to the mount to compensate the movement of the star. Stars can &amp;quot;move&amp;quot; in an image for example due to impreciseness of the mount. &lt;br /&gt;
&lt;br /&gt;
The (dusty) plate in front of the 40cm mirror is called &amp;quot;Schmid-Platte&amp;quot;. It is used to improve the imaging of the telescope and to correct several errors of the mirrors like coma and field-curvature. As it is very sensitive to scratching, it won't be cleaned and left dusty. But the dust has hardly any effect on the images as it lays far outside of the focusplane. The optical design is similar to a Ritchey-Chrétien type regarding the capability, but has a spherical main mirror, an aspherical secondary mirror and a lens-corrector (=Schmidt-plate). The price of the telescope and the mount is roughly about 25.000€ altogether.&lt;br /&gt;
&lt;br /&gt;
The 50cm doesn't have a Schmid-Platte but a corrector (lenses) placed in the OAZ. It has an elliptical main mirror and a spherical secondary mirror (Corrected Dall Kirkham). The price of the telescope and the mount is roughly about 65.000€. The secondary mirror is, compared to the size of the main mirror, significantly larger than the 40cm-sec. mirror. This results in a better luminosity an a larger, flat-field which is important for taking images. We can achieve tracking accuracies of about 10min without guiding.&lt;br /&gt;
&lt;br /&gt;
== Monthly public tours ==&lt;br /&gt;
NOTE: even if there is already someone listed for a tour, please enter you availability&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Date &lt;br /&gt;
! Language&lt;br /&gt;
! Time&lt;br /&gt;
! Type&lt;br /&gt;
! Available Guides&lt;br /&gt;
! Backup&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/10/24&lt;br /&gt;
| German&lt;br /&gt;
| 6:30 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| Philipp T.&lt;br /&gt;
| Steven, Katharina&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 2023/11/07 &lt;br /&gt;
| English&lt;br /&gt;
| 6 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| Aafia&lt;br /&gt;
| Katharina&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/11/14 &lt;br /&gt;
| German&lt;br /&gt;
| 6 pm &lt;br /&gt;
| Tour for children &lt;br /&gt;
| &lt;br /&gt;
| Katharina&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/11/28&lt;br /&gt;
| German&lt;br /&gt;
| 6 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| Katharina&lt;br /&gt;
| Philipp&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/12/05&lt;br /&gt;
| English&lt;br /&gt;
| 6 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| Federico&lt;br /&gt;
| Philipp, Katharina&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/12/12&lt;br /&gt;
| German&lt;br /&gt;
| 6 pm&lt;br /&gt;
| Tour for children&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/12/19&lt;br /&gt;
| German&lt;br /&gt;
| 6 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| &lt;br /&gt;
| Philipp&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Tours looking for a guide ==&lt;br /&gt;
ATTENTION: tours are not sorted by the date of the tour, but the time when they were requested&lt;br /&gt;
&lt;br /&gt;
NOTE: please enter you availability even if there is already another name listed.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Date &lt;br /&gt;
! Language&lt;br /&gt;
! Time&lt;br /&gt;
! Organizer &lt;br /&gt;
! Additional information &lt;br /&gt;
! # People&lt;br /&gt;
! Observing&lt;br /&gt;
! Available Guides&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/12/01 or 20203/12/08&lt;br /&gt;
| German&lt;br /&gt;
| start between 5:30pm and 6pm&lt;br /&gt;
| Linus Wittich Medien KG&lt;br /&gt;
| Need two guides (!)&lt;br /&gt;
| 50 - 60 adults&lt;br /&gt;
| yes (only a small group, not all)&lt;br /&gt;
| Philipp&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2024/01/19&lt;br /&gt;
| German&lt;br /&gt;
| start between  6pm and 7pm&lt;br /&gt;
| Diakonie Kulmbach&lt;br /&gt;
| activity for people with mental disabilities&lt;br /&gt;
| ~ 10 adults&lt;br /&gt;
| yes&lt;br /&gt;
| &lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Observing ==&lt;br /&gt;
&lt;br /&gt;
[[Category:Internal]]&lt;/div&gt;</summary>
		<author><name>Thalhammer</name></author>
	</entry>
	<entry>
		<id>https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Nustar&amp;diff=3002</id>
		<title>Nustar</title>
		<link rel="alternate" type="text/html" href="https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Nustar&amp;diff=3002"/>
		<updated>2023-10-02T13:11:04Z</updated>

		<summary type="html">&lt;p&gt;Thalhammer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;====== NuSTAR data extraction ======&lt;br /&gt;
&lt;br /&gt;
'''Preparation:''' This step unpacks the data of both FPM to the specified 'prepdir'. The example observation is of Mrk 335.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/csh&lt;br /&gt;
   &lt;br /&gt;
set revolution = '6'&lt;br /&gt;
set obsid = '60001041005'&lt;br /&gt;
set datadir = /data/X-ray/NuSTAR/data/$revolution/$obsid&lt;br /&gt;
set prepdir = /userdata/data/$user/whereever/you/want&lt;br /&gt;
&lt;br /&gt;
nuprepare --datadir=$datadir --prepdir=$prepdir --all&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Spectrum and Lightcurve Extraction:'''&lt;br /&gt;
Now you can take a look at the raw images in prepdir/reprocessed/nu-obsid-A-or-B-01_cl.evt using ''ds9''. Create a region by clicking at the source and choose a circular region between 50 and 120&amp;lt;nowiki&amp;gt;''&amp;lt;/nowiki&amp;gt; radius centered on the source. You can save the coordinates under Region-&amp;gt;Save Regions... as .reg-file use the default coordinate system.&amp;lt;br /&amp;gt;&lt;br /&gt;
Choose and save another region for the background spectrum that does not contain any sources and make it as large as possible. Be careful that it is still within NuSTAR's FOV.&amp;lt;br /&amp;gt;&lt;br /&gt;
Now we can extract the spectrum using nuextract:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
#!/bin/csh&lt;br /&gt;
   &lt;br /&gt;
set revolution = '6'&lt;br /&gt;
set obsid = '60001041005'&lt;br /&gt;
set prepdir = /userdata/data/$user/whereever/you/want&lt;br /&gt;
&lt;br /&gt;
set name = extraction_a&lt;br /&gt;
set bkg = $prepdir/reprocessed/fpma_bkg.reg&lt;br /&gt;
set src = $prepdir/reprocessed/fpma_src.reg&lt;br /&gt;
&lt;br /&gt;
nuextract --prepdir=$prepdir --name=$name --srcreg=$src --bkgreg=$bkg --fpm='A'&lt;br /&gt;
&lt;br /&gt;
set name = extraction_b&lt;br /&gt;
set bkg = $prepdir/reprocessed/fpmb_bkg.reg&lt;br /&gt;
set src = $prepdir/reprocessed/fpmb_src.reg&lt;br /&gt;
&lt;br /&gt;
nuextract --prepdir=$prepdir --name=$name --srcreg=$src --bkgreg=$bkg --fpm='B'&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For time- or energy-limited extractions take a look at:&lt;br /&gt;
 nuextract --help&lt;br /&gt;
&lt;br /&gt;
===== Version information =====&lt;br /&gt;
&lt;br /&gt;
In order to find out the version of the NuSTARDAS and CALDB your data were extracted with, you can use the following commands:&lt;br /&gt;
&lt;br /&gt;
  fdump &amp;lt;fits_file_of_interest&amp;gt; page=no | grep -i nustardas&lt;br /&gt;
  fdump &amp;lt;fits_file_of_interest&amp;gt; page=no | grep -i caldb&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== Known Issues =====&lt;br /&gt;
&lt;br /&gt;
* Very long file and directory names can cause crashes in nuextract. The path $name has to be a relative path, otherwise nuextract crashes.&lt;br /&gt;
&lt;br /&gt;
===== Bright sources =====&lt;br /&gt;
&lt;br /&gt;
* For sources with count-rates exceeding ~100 counts per second it is advised to use the the additional nuprepare flag --statusexpr=&amp;quot;(STATUS==b0000xxx00xxxx000)&amp;amp;&amp;amp;(SHIELD==0)&amp;quot;. &lt;br /&gt;
* If you dont do this you might find a large (up to 30%) off-set in the normalization between the FPMs. &lt;br /&gt;
* For timing analysis of the power spectrum the SHIELD==0 term should be removed as this does introduce energy dependent timing features. &lt;br /&gt;
* Check the NuSTAR FAQ on bright sources for more information: https://heasarc.gsfc.nasa.gov/docs/nustar/nustar_faq.html#bright. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Data Extraction]]&lt;/div&gt;</summary>
		<author><name>Thalhammer</name></author>
	</entry>
	<entry>
		<id>https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Guided_Tours_and_Public_Outreach&amp;diff=2997</id>
		<title>Guided Tours and Public Outreach</title>
		<link rel="alternate" type="text/html" href="https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Guided_Tours_and_Public_Outreach&amp;diff=2997"/>
		<updated>2023-09-28T19:47:20Z</updated>

		<summary type="html">&lt;p&gt;Thalhammer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;On this pages you can find all information needed to guide a tour through our observatory for public people.&lt;br /&gt;
&lt;br /&gt;
At least, that's the aim of this page, so please add information if you think its missing!&lt;br /&gt;
&lt;br /&gt;
= Platform =&lt;br /&gt;
&lt;br /&gt;
'''The following is important:'''&amp;lt;br&amp;gt;&lt;br /&gt;
Tours are officially '''organized''' by the [http://foerderverein-sternwarte-bamberg.de Foerderverein of the observatory], but '''operated''' by the observatory staff to be insured through the university!&lt;br /&gt;
&lt;br /&gt;
The main platform for the general public is&amp;lt;br&amp;gt;[http://foerderverein-sternwarte-bamberg.de/fuehrungen http://foerderverein-sternwarte-bamberg.de/fuehrungen].&lt;br /&gt;
&lt;br /&gt;
Here, tours can be ordered in two different ways:&lt;br /&gt;
* single persons and smaller groups can directly book public and regular guided tours via our webform at&amp;lt;br&amp;gt;https://www.sternwarte.uni-erlangen.de/guided-tours/&lt;br /&gt;
* larger groups may directly ask for a tour at a separate date either by email to&amp;lt;br&amp;gt;[mailto:fuehrungen@foerderverein-sternwarte-bamberg.de fuehrungen@foerderverein-sternwarte-bamberg.de]&amp;lt;br&amp;gt;or by phone. The email address is a forwarding to a certain person of the mailing list (see below).&lt;br /&gt;
&lt;br /&gt;
The source code of the webform for booking a public tour can be found in the GIT repository at&amp;lt;br&amp;gt;&lt;br /&gt;
[https://www.sternwarte.uni-erlangen.de/gitlab/webmaster/guided-tours https://www.sternwarte.uni-erlangen.de/gitlab/webmaster/guided-tours].&amp;lt;br&amp;gt;&lt;br /&gt;
All pushes to the master branch are automatically deployed at the official URL above!&lt;br /&gt;
&lt;br /&gt;
== Mailing List / Current &amp;quot;staff&amp;quot; ==&lt;br /&gt;
&lt;br /&gt;
All people interested in giving guided tours are member of the mailing list&amp;lt;br&amp;gt;&lt;br /&gt;
[mailto:astro-fuehrungen@lists.fau.de astro-fuehrungen@lists.fau.de]&amp;lt;br&amp;gt;&lt;br /&gt;
Please '''do not share''' this address with anybody outside of the observatory!&lt;br /&gt;
If you're not on the list but interested in giving tours, just ask Max to add you :-)&lt;br /&gt;
&lt;br /&gt;
New tours without a guide yet are usually announced via this list. See [[Mailing lists]] for the list administrator.&lt;br /&gt;
&lt;br /&gt;
In charge of organization:&lt;br /&gt;
* Katrin&lt;br /&gt;
&lt;br /&gt;
Currently, the following people give tours on a regular basis:&lt;br /&gt;
* Dominic &lt;br /&gt;
* Ole&lt;br /&gt;
* Steven&lt;br /&gt;
* Christian&lt;br /&gt;
* Aafia&lt;br /&gt;
* Amy&lt;br /&gt;
* Julia&lt;br /&gt;
* Philipp T.&lt;br /&gt;
&lt;br /&gt;
= Tip policy =&lt;br /&gt;
&lt;br /&gt;
The group is informed beforehand about the rule of tip. &lt;br /&gt;
For the guides the following applies for the money you get during the tour:&lt;br /&gt;
During the week (Monday till Friday) the factor for the donation, which goes directly to the Foerderverein, is 1/3 (33%), the rest (2/3) is your personal tip.&lt;br /&gt;
For weekend tours (Saturday, Sunday) the factor for the donation is 1/4 (25%).&lt;br /&gt;
&lt;br /&gt;
Make sure to hand in the donations immediately after your tour. Put the money on Ingos desk with a note stating which tour you gave, how much you received and how many people were there.&lt;br /&gt;
&lt;br /&gt;
= Offering Tours =&lt;br /&gt;
&lt;br /&gt;
At some point you're perhaps asked to give a tour or if it is possible to have one on a specific date. The latter might occur if Edith is out of her office and her telephone is redirected. In those cases you should know ''and'' check following things:&lt;br /&gt;
* '''Who is asking''' for a tour? &amp;lt;br&amp;gt; If you're on the phone ask for a name and write down the phone number where the person can be called!&lt;br /&gt;
* The '''number of people should be between 15 and 25'''. &amp;lt;br&amp;gt; Of course, the boundary conditions depend on the person guiding the tour. In a case of doubt, ask the guide or, if none is found yet, you simply can't promise that there will be a tour! In that case you may offer to look for a guide giving the tour anyway (and call the person back), but again don't make any promises! A list of people offering tours can be found below.&lt;br /&gt;
* What is the '''average age of the persons attending''' the tour? &amp;lt;br&amp;gt; That's an important point since the content of a tour differs between children and adults, of course. Furthermore some guides have favorite age groups!&lt;br /&gt;
* Carefully check the '''date and time of the tour'''!&lt;br /&gt;
** It's most likely to find a guide if the weekday of a tour is '''between Monday and Thursday'''. Friday might work if it is before noon, otherwise people might be on the way into the weekend. In all other cases you may offer to look for a guide giving the tour anyway (see the point about the group size above).&lt;br /&gt;
** Make sure that there is '''no tour scheduled already'''! For that look into our online calendar (the link can be found below) and on the whiteboard in the copying machine office.&lt;br /&gt;
** Related to the last point ensure that there is '''no lab course''' running at the date! The lab course is also marked in our online calendar.&lt;br /&gt;
** Usually, a tour will take '''about 1.5 to 2 hours'''.&lt;br /&gt;
* Clarify the '''costs for a tour''' beforehand!! &amp;lt;br&amp;gt; Unfortunately, we are '''not allowed to ask for money''' for giving a tour! The only way for getting money is to tell the people that they are welcomed to '''donate money to the [http://foerderverein-sternwarte-bamberg.de/| Foerderverein der Sternwarte]'''. In nearly every case the people or the one asking for a tour will pay something. A rule of thumb is that '''every person donates 3 EUR''' (for children 2 EUR are alright as well). &amp;lt;br&amp;gt; __For your ears only__: 1 EUR per attended person of the donated money will be transferred to the Förderverein (the current treasurer is Ingo, leave the money on his desk with a short note stating the number of people and what kind of a tour this was), the rest is for the guide! There will be a contact phone-number available, best would be to call the contacts-person before the tour to tell them these infos...&lt;br /&gt;
* '''Observing with our telescopes''' is possible, of course, but only in case of '''night and cloudless weather'''! No kidding, some people are not aware of these facts... &amp;lt;br&amp;gt; (&amp;quot;The day is too bright to see stars.&amp;quot;, &amp;quot;I'm sorry, we can't look trough the clouds.&amp;quot;, &amp;quot;The weather forecast is too uncertain, we can't promise.&amp;quot;) Please check if someone else has already signed in for one of the telescopes on the day/night of the guided tour!&lt;br /&gt;
* If all the above points are clarified '''mark the tour''' &amp;lt;br&amp;gt; in our [https://www.sternwarte.uni-erlangen.de/calendar/ online calendar] and the whiteboard in the copying machine office. You have to be at a machine at the observatory to have access to the online calendar (to be more precisely: you're machine has to have an internal IP-address). &amp;lt;br&amp;gt; The entry into the online calendar, besides the date and time, should include &amp;quot;for whom is the tour and the group size, contact person and phone number, name of the guide giving the tour&amp;quot;. &amp;lt;br&amp;gt; The whiteboard template is as follows: &amp;quot;date, for whom is the tour, time, guide&amp;quot;&lt;br /&gt;
&lt;br /&gt;
= Giving a tour =&lt;br /&gt;
&lt;br /&gt;
Each tour has several stations, where you can show things or talk to the people. Useful information and experiences about that is listed below. It might be helpful as well to read the article about [[intern:popular_science:start|popular science]] in case you want or have to (if somebody asks) explain scientific aspects.&lt;br /&gt;
&lt;br /&gt;
== Preparation ==&lt;br /&gt;
&lt;br /&gt;
'''Before the tour'''&lt;br /&gt;
* Shut the doors of all offices in the main building (at least on the ground level) for several reasons: people are not allowed to walk in there and some of us are still working there during tours!&lt;br /&gt;
* Remove the northern hemisphere from the model of the inner solar system located in the entrance hall (you may put it into the Knigge room)&lt;br /&gt;
* Switch the lights on you need:&lt;br /&gt;
** entrance hall&lt;br /&gt;
** meteorite showcase (switch is on the right next to it)&lt;br /&gt;
** hallway to the meridian building; here are multiple switches&lt;br /&gt;
*** main light: right next to the door of the hallway or the backdoor of the main building (labeled &amp;quot;Meridian&amp;quot;)&lt;br /&gt;
*** info panels: on the opposite wall to the door next to the blue cupboard&lt;br /&gt;
*** showcases and Blinkkomparator: in the cutout box up the few stairs on the right wall close to the library, labeled &amp;quot;Linke Steckdosen&amp;quot;&lt;br /&gt;
* In case of observations&lt;br /&gt;
** carry the needed oculars into the domes (for observations with the naked eye, the 40cm telescope is strongly recommended)&lt;br /&gt;
** do __not__ open the domes (first, it might start raining while nobody is there, and it's more fun for you to let the people do it)&lt;br /&gt;
** do __not__ remove the dust covers of the telescopes (wait until the dome has been opened)&lt;br /&gt;
** read the [[remeis:start|guide how to operate the telescopes and mountings]]&lt;br /&gt;
* In case of showing nice pictures&lt;br /&gt;
** make sure enough chairs are available&lt;br /&gt;
** switch on the beamer in the library, log into the machine and start your presentation, picture-viewer, ...&lt;br /&gt;
 &lt;br /&gt;
'''After the tour'''&lt;br /&gt;
* Switch the lights off&lt;br /&gt;
* Shut down the telescope mounting, put the dust covers back on and close the domes&lt;br /&gt;
* Logout of the used machines and switch the beamer off&lt;br /&gt;
* Put on the dust covers of the telescopes in the hallway&lt;br /&gt;
* Protect the photo plates on the Blinkkomparator from getting dusty&lt;br /&gt;
* '''Move the entry from the whiteboard''' in the copying machine office '''to the list attached to the pin-board''' next to it&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Material and Presentations ==&lt;br /&gt;
*Collected information valuable for guided tours: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours'' and ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/guidedtour.pdf''&lt;br /&gt;
&lt;br /&gt;
*A merger of (picture/video) presentations given at guided tours: &amp;lt;br&amp;gt; ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/guidedtour.odp'' &lt;br /&gt;
&lt;br /&gt;
*and according videos in  &amp;lt;br&amp;gt; ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/videos/''&lt;br /&gt;
&lt;br /&gt;
*Research and activities at Remeis from the radio to the gamma-rays (Tobi Beuchert): &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Andrea_tour_material/observations_allwavelength_remeisresearch_beuchert.pdf''&lt;br /&gt;
&lt;br /&gt;
*A presentation showing the astrophotography done at the observatory: &amp;lt;br&amp;gt; ''/data/media/slideshow_astrophotographie/optische_Quellen.pdf''&lt;br /&gt;
&lt;br /&gt;
*A video tour with Joern: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Joerns_example_tour''&lt;br /&gt;
&lt;br /&gt;
*A video tour with Uli (only hallway): &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Ulis_example_tour_hall_2019''&lt;br /&gt;
&lt;br /&gt;
*A complete tour by Sebastian Müller: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Sebastians_example_tour''&lt;br /&gt;
&lt;br /&gt;
*Presentations for tours by Andrea Gokus: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Andrea_tour_material'' &amp;lt;br&amp;gt; Contains presentations about the solar system (solar_system.pdf), neutrinos (neutrino_talk.pdf), overview of different objet types (impressions_universe.pdf)&lt;br /&gt;
&lt;br /&gt;
*Andreas tour notes: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Andrea_tour_material/Sternwarten_Fuehrungsnotizen.pdf''&lt;br /&gt;
&lt;br /&gt;
*Amys tour notes: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Guided_Tour_Information_Amy.pdf''&lt;br /&gt;
&lt;br /&gt;
*Tobis tour notes: &amp;lt;br&amp;gt; ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/guidedtour.pdf''&lt;br /&gt;
&lt;br /&gt;
*Information on clocks: &amp;lt;br&amp;gt; ''/data/media/history/2009-01_KlassikUhren_Poehlmann_Max_Ort.pdf''&lt;br /&gt;
&lt;br /&gt;
*Information on history of the observatory and the collection: &amp;lt;br&amp;gt; ''/data/media/history/AstronomischeSammlung.pdf''&lt;br /&gt;
&lt;br /&gt;
*History of the observatory (Litten): &amp;lt;br&amp;gt; ''/data/media/history/Litten-1.pdf'' &amp;lt;br&amp;gt; ''/data/media/history/Litten-2.pdf''&lt;br /&gt;
&lt;br /&gt;
*Last will of Dr. Karl Remeis: &amp;lt;br&amp;gt; ''/data/media/history/Testament_Karl_Remeis.pdf''&lt;br /&gt;
&lt;br /&gt;
*Die Remeis-Sternwarte zu Bamberg 1889-1939, E. Zinner: &amp;lt;br&amp;gt; [https://articles.adsabs.harvard.edu/cgi-bin/nph-iarticle_query?1939VeBam...4....1Z&amp;amp;amp;data_type=PDF_HIGH&amp;amp;amp;whole_paper=YES&amp;amp;amp;type=PRINTER&amp;amp;amp;filetype=.pdf ADS]&lt;br /&gt;
&lt;br /&gt;
== Picture presentation ==&lt;br /&gt;
&lt;br /&gt;
There are different modes for the beamer (e.g. presentation, videos, graphics etc.) which result in a different appearance of the images. Make sure to select a presentation mode in which the pictures appear in an appropriate brightness on the screen. (I think &amp;quot;graphics&amp;quot; was a good one).&lt;br /&gt;
&lt;br /&gt;
== Telescopes in the domes ==&lt;br /&gt;
It's nice to show the main mirror to the people so that they can see themselves. To do so, just turn down the telescope in declination. This is only possible for the 40cm as the 50cm-Mount has a mechanical stop.&lt;br /&gt;
&lt;br /&gt;
Sometimes people want to know what we do with the tiny, little telescopes attached on the side of the big ones. Those are guiding-scopes. You can attach a camera to them and let it take pictures of one star. If the star moves (what it shouldn't do) a correction signal is sent to the mount to compensate the movement of the star. Stars can &amp;quot;move&amp;quot; in an image for example due to impreciseness of the mount. &lt;br /&gt;
&lt;br /&gt;
The (dusty) plate in front of the 40cm mirror is called &amp;quot;Schmid-Platte&amp;quot;. It is used to improve the imaging of the telescope and to correct several errors of the mirrors like coma and field-curvature. As it is very sensitive to scratching, it won't be cleaned and left dusty. But the dust has hardly any effect on the images as it lays far outside of the focusplane. The optical design is similar to a Ritchey-Chrétien type regarding the capability, but has a spherical main mirror, an aspherical secondary mirror and a lens-corrector (=Schmidt-plate). The price of the telescope and the mount is roughly about 25.000€ altogether.&lt;br /&gt;
&lt;br /&gt;
The 50cm doesn't have a Schmid-Platte but a corrector (lenses) placed in the OAZ. It has an elliptical main mirror and a spherical secondary mirror (Corrected Dall Kirkham). The price of the telescope and the mount is roughly about 65.000€. The secondary mirror is, compared to the size of the main mirror, significantly larger than the 40cm-sec. mirror. This results in a better luminosity an a larger, flat-field which is important for taking images. We can achieve tracking accuracies of about 10min without guiding.&lt;br /&gt;
&lt;br /&gt;
== Monthly public tours ==&lt;br /&gt;
NOTE: even if there is already someone listed for a tour, please enter you availability&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Date &lt;br /&gt;
! Language&lt;br /&gt;
! Time&lt;br /&gt;
! Type&lt;br /&gt;
! Available Guides&lt;br /&gt;
! Backup&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/09/..&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| no tour&lt;br /&gt;
| summer / lab break&lt;br /&gt;
| -&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 2023/10/10 &lt;br /&gt;
| English&lt;br /&gt;
| 7 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| Paavai &lt;br /&gt;
| Steven, Aafia&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/10/16 &lt;br /&gt;
| German&lt;br /&gt;
| 6:30 pm &lt;br /&gt;
| normal tour &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/10/18 &lt;br /&gt;
| German&lt;br /&gt;
| 6 pm &lt;br /&gt;
| Tour for children &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/10/24&lt;br /&gt;
| German&lt;br /&gt;
| 6:30 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| Philipp T.&lt;br /&gt;
| Steven&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 2023/11/07 &lt;br /&gt;
| English&lt;br /&gt;
| 6 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| Aafia&lt;br /&gt;
| &lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/11/14 &lt;br /&gt;
| German&lt;br /&gt;
| 6 pm &lt;br /&gt;
| Tour for children &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/11/28&lt;br /&gt;
| German&lt;br /&gt;
| 6 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| &lt;br /&gt;
| Philipp&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/12/05&lt;br /&gt;
| English&lt;br /&gt;
| 6 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| &lt;br /&gt;
| Philipp&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/12/12&lt;br /&gt;
| German&lt;br /&gt;
| 6 pm&lt;br /&gt;
| Tour for children&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/12/19&lt;br /&gt;
| German&lt;br /&gt;
| 6 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| &lt;br /&gt;
| Philipp&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Tours looking for a guide ==&lt;br /&gt;
ATTENTION: tours are not sorted by the date of the tour, but the time when they were requested&lt;br /&gt;
&lt;br /&gt;
NOTE: please enter you availability even if there is already another name listed.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Date &lt;br /&gt;
! Language&lt;br /&gt;
! Time&lt;br /&gt;
! Organizer &lt;br /&gt;
! Additional information &lt;br /&gt;
! # People&lt;br /&gt;
! Observing&lt;br /&gt;
! Available Guides&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/10/19&lt;br /&gt;
| German&lt;br /&gt;
| 4 pm&lt;br /&gt;
| Frau Hörath&lt;br /&gt;
| need two guides (!)&lt;br /&gt;
| 30-40 adults&lt;br /&gt;
| no&lt;br /&gt;
| Philipp T. and Christian R.&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Observing ==&lt;br /&gt;
&lt;br /&gt;
[[Category:Internal]]&lt;/div&gt;</summary>
		<author><name>Thalhammer</name></author>
	</entry>
	<entry>
		<id>https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Guided_Tours_and_Public_Outreach&amp;diff=2996</id>
		<title>Guided Tours and Public Outreach</title>
		<link rel="alternate" type="text/html" href="https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Guided_Tours_and_Public_Outreach&amp;diff=2996"/>
		<updated>2023-09-28T19:45:33Z</updated>

		<summary type="html">&lt;p&gt;Thalhammer: /* Monthly public tours */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;On this pages you can find all information needed to guide a tour through our observatory for public people.&lt;br /&gt;
&lt;br /&gt;
At least, that's the aim of this page, so please add information if you think its missing!&lt;br /&gt;
&lt;br /&gt;
= Platform =&lt;br /&gt;
&lt;br /&gt;
'''The following is important:'''&amp;lt;br&amp;gt;&lt;br /&gt;
Tours are officially '''organized''' by the [http://foerderverein-sternwarte-bamberg.de Foerderverein of the observatory], but '''operated''' by the observatory staff to be insured through the university!&lt;br /&gt;
&lt;br /&gt;
The main platform for the general public is&amp;lt;br&amp;gt;[http://foerderverein-sternwarte-bamberg.de/fuehrungen http://foerderverein-sternwarte-bamberg.de/fuehrungen].&lt;br /&gt;
&lt;br /&gt;
Here, tours can be ordered in two different ways:&lt;br /&gt;
* single persons and smaller groups can directly book public and regular guided tours via our webform at&amp;lt;br&amp;gt;https://www.sternwarte.uni-erlangen.de/guided-tours/&lt;br /&gt;
* larger groups may directly ask for a tour at a separate date either by email to&amp;lt;br&amp;gt;[mailto:fuehrungen@foerderverein-sternwarte-bamberg.de fuehrungen@foerderverein-sternwarte-bamberg.de]&amp;lt;br&amp;gt;or by phone. The email address is a forwarding to a certain person of the mailing list (see below).&lt;br /&gt;
&lt;br /&gt;
The source code of the webform for booking a public tour can be found in the GIT repository at&amp;lt;br&amp;gt;&lt;br /&gt;
[https://www.sternwarte.uni-erlangen.de/gitlab/webmaster/guided-tours https://www.sternwarte.uni-erlangen.de/gitlab/webmaster/guided-tours].&amp;lt;br&amp;gt;&lt;br /&gt;
All pushes to the master branch are automatically deployed at the official URL above!&lt;br /&gt;
&lt;br /&gt;
== Mailing List / Current &amp;quot;staff&amp;quot; ==&lt;br /&gt;
&lt;br /&gt;
All people interested in giving guided tours are member of the mailing list&amp;lt;br&amp;gt;&lt;br /&gt;
[mailto:astro-fuehrungen@lists.fau.de astro-fuehrungen@lists.fau.de]&amp;lt;br&amp;gt;&lt;br /&gt;
Please '''do not share''' this address with anybody outside of the observatory!&lt;br /&gt;
If you're not on the list but interested in giving tours, just ask Max to add you :-)&lt;br /&gt;
&lt;br /&gt;
New tours without a guide yet are usually announced via this list. See [[Mailing lists]] for the list administrator.&lt;br /&gt;
&lt;br /&gt;
In charge of organization:&lt;br /&gt;
* Katrin&lt;br /&gt;
&lt;br /&gt;
Currently, the following people give tours on a regular basis:&lt;br /&gt;
* Dominic &lt;br /&gt;
* Ole&lt;br /&gt;
* Steven&lt;br /&gt;
* Christian&lt;br /&gt;
* Aafia&lt;br /&gt;
* Amy&lt;br /&gt;
* Julia&lt;br /&gt;
* Philipp T.&lt;br /&gt;
&lt;br /&gt;
= Tip policy =&lt;br /&gt;
&lt;br /&gt;
The group is informed beforehand about the rule of tip. &lt;br /&gt;
For the guides the following applies for the money you get during the tour:&lt;br /&gt;
During the week (Monday till Friday) the factor for the donation, which goes directly to the Foerderverein, is 1/3 (33%), the rest (2/3) is your personal tip.&lt;br /&gt;
For weekend tours (Saturday, Sunday) the factor for the donation is 1/4 (25%).&lt;br /&gt;
&lt;br /&gt;
Make sure to hand in the donations immediately after your tour. Put the money on Ingos desk with a note stating which tour you gave, how much you received and how many people were there.&lt;br /&gt;
&lt;br /&gt;
= Offering Tours =&lt;br /&gt;
&lt;br /&gt;
At some point you're perhaps asked to give a tour or if it is possible to have one on a specific date. The latter might occur if Edith is out of her office and her telephone is redirected. In those cases you should know ''and'' check following things:&lt;br /&gt;
* '''Who is asking''' for a tour? &amp;lt;br&amp;gt; If you're on the phone ask for a name and write down the phone number where the person can be called!&lt;br /&gt;
* The '''number of people should be between 15 and 25'''. &amp;lt;br&amp;gt; Of course, the boundary conditions depend on the person guiding the tour. In a case of doubt, ask the guide or, if none is found yet, you simply can't promise that there will be a tour! In that case you may offer to look for a guide giving the tour anyway (and call the person back), but again don't make any promises! A list of people offering tours can be found below.&lt;br /&gt;
* What is the '''average age of the persons attending''' the tour? &amp;lt;br&amp;gt; That's an important point since the content of a tour differs between children and adults, of course. Furthermore some guides have favorite age groups!&lt;br /&gt;
* Carefully check the '''date and time of the tour'''!&lt;br /&gt;
** It's most likely to find a guide if the weekday of a tour is '''between Monday and Thursday'''. Friday might work if it is before noon, otherwise people might be on the way into the weekend. In all other cases you may offer to look for a guide giving the tour anyway (see the point about the group size above).&lt;br /&gt;
** Make sure that there is '''no tour scheduled already'''! For that look into our online calendar (the link can be found below) and on the whiteboard in the copying machine office.&lt;br /&gt;
** Related to the last point ensure that there is '''no lab course''' running at the date! The lab course is also marked in our online calendar.&lt;br /&gt;
** Usually, a tour will take '''about 1.5 to 2 hours'''.&lt;br /&gt;
* Clarify the '''costs for a tour''' beforehand!! &amp;lt;br&amp;gt; Unfortunately, we are '''not allowed to ask for money''' for giving a tour! The only way for getting money is to tell the people that they are welcomed to '''donate money to the [http://foerderverein-sternwarte-bamberg.de/| Foerderverein der Sternwarte]'''. In nearly every case the people or the one asking for a tour will pay something. A rule of thumb is that '''every person donates 3 EUR''' (for children 2 EUR are alright as well). &amp;lt;br&amp;gt; __For your ears only__: 1 EUR per attended person of the donated money will be transferred to the Förderverein (the current treasurer is Ingo, leave the money on his desk with a short note stating the number of people and what kind of a tour this was), the rest is for the guide! There will be a contact phone-number available, best would be to call the contacts-person before the tour to tell them these infos...&lt;br /&gt;
* '''Observing with our telescopes''' is possible, of course, but only in case of '''night and cloudless weather'''! No kidding, some people are not aware of these facts... &amp;lt;br&amp;gt; (&amp;quot;The day is too bright to see stars.&amp;quot;, &amp;quot;I'm sorry, we can't look trough the clouds.&amp;quot;, &amp;quot;The weather forecast is too uncertain, we can't promise.&amp;quot;) Please check if someone else has already signed in for one of the telescopes on the day/night of the guided tour!&lt;br /&gt;
* If all the above points are clarified '''mark the tour''' &amp;lt;br&amp;gt; in our [https://www.sternwarte.uni-erlangen.de/calendar/ online calendar] and the whiteboard in the copying machine office. You have to be at a machine at the observatory to have access to the online calendar (to be more precisely: you're machine has to have an internal IP-address). &amp;lt;br&amp;gt; The entry into the online calendar, besides the date and time, should include &amp;quot;for whom is the tour and the group size, contact person and phone number, name of the guide giving the tour&amp;quot;. &amp;lt;br&amp;gt; The whiteboard template is as follows: &amp;quot;date, for whom is the tour, time, guide&amp;quot;&lt;br /&gt;
&lt;br /&gt;
= Giving a tour =&lt;br /&gt;
&lt;br /&gt;
Each tour has several stations, where you can show things or talk to the people. Useful information and experiences about that is listed below. It might be helpful as well to read the article about [[intern:popular_science:start|popular science]] in case you want or have to (if somebody asks) explain scientific aspects.&lt;br /&gt;
&lt;br /&gt;
== Preparation ==&lt;br /&gt;
&lt;br /&gt;
'''Before the tour'''&lt;br /&gt;
* Shut the doors of all offices in the main building (at least on the ground level) for several reasons: people are not allowed to walk in there and some of us are still working there during tours!&lt;br /&gt;
* Remove the northern hemisphere from the model of the inner solar system located in the entrance hall (you may put it into the Knigge room)&lt;br /&gt;
* Switch the lights on you need:&lt;br /&gt;
** entrance hall&lt;br /&gt;
** meteorite showcase (switch is on the right next to it)&lt;br /&gt;
** hallway to the meridian building; here are multiple switches&lt;br /&gt;
*** main light: right next to the door of the hallway or the backdoor of the main building (labeled &amp;quot;Meridian&amp;quot;)&lt;br /&gt;
*** info panels: on the opposite wall to the door next to the blue cupboard&lt;br /&gt;
*** showcases and Blinkkomparator: in the cutout box up the few stairs on the right wall close to the library, labeled &amp;quot;Linke Steckdosen&amp;quot;&lt;br /&gt;
* In case of observations&lt;br /&gt;
** carry the needed oculars into the domes (for observations with the naked eye, the 40cm telescope is strongly recommended)&lt;br /&gt;
** do __not__ open the domes (first, it might start raining while nobody is there, and it's more fun for you to let the people do it)&lt;br /&gt;
** do __not__ remove the dust covers of the telescopes (wait until the dome has been opened)&lt;br /&gt;
** read the [[remeis:start|guide how to operate the telescopes and mountings]]&lt;br /&gt;
* In case of showing nice pictures&lt;br /&gt;
** make sure enough chairs are available&lt;br /&gt;
** switch on the beamer in the library, log into the machine and start your presentation, picture-viewer, ...&lt;br /&gt;
 &lt;br /&gt;
'''After the tour'''&lt;br /&gt;
* Switch the lights off&lt;br /&gt;
* Shut down the telescope mounting, put the dust covers back on and close the domes&lt;br /&gt;
* Logout of the used machines and switch the beamer off&lt;br /&gt;
* Put on the dust covers of the telescopes in the hallway&lt;br /&gt;
* Protect the photo plates on the Blinkkomparator from getting dusty&lt;br /&gt;
* '''Move the entry from the whiteboard''' in the copying machine office '''to the list attached to the pin-board''' next to it&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Material and Presentations ==&lt;br /&gt;
*Collected information valuable for guided tours: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours'' and ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/guidedtour.pdf''&lt;br /&gt;
&lt;br /&gt;
*A merger of (picture/video) presentations given at guided tours: &amp;lt;br&amp;gt; ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/guidedtour.odp'' &lt;br /&gt;
&lt;br /&gt;
*and according videos in  &amp;lt;br&amp;gt; ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/videos/''&lt;br /&gt;
&lt;br /&gt;
*Research and activities at Remeis from the radio to the gamma-rays (Tobi Beuchert): &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Andrea_tour_material/observations_allwavelength_remeisresearch_beuchert.pdf''&lt;br /&gt;
&lt;br /&gt;
*A presentation showing the astrophotography done at the observatory: &amp;lt;br&amp;gt; ''/data/media/slideshow_astrophotographie/optische_Quellen.pdf''&lt;br /&gt;
&lt;br /&gt;
*A video tour with Joern: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Joerns_example_tour''&lt;br /&gt;
&lt;br /&gt;
*A video tour with Uli (only hallway): &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Ulis_example_tour_hall_2019''&lt;br /&gt;
&lt;br /&gt;
*A complete tour by Sebastian Müller: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Sebastians_example_tour''&lt;br /&gt;
&lt;br /&gt;
*Presentations for tours by Andrea Gokus: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Andrea_tour_material'' &amp;lt;br&amp;gt; Contains presentations about the solar system (solar_system.pdf), neutrinos (neutrino_talk.pdf), overview of different objet types (impressions_universe.pdf)&lt;br /&gt;
&lt;br /&gt;
*Andreas tour notes: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Andrea_tour_material/Sternwarten_Fuehrungsnotizen.pdf''&lt;br /&gt;
&lt;br /&gt;
*Amys tour notes: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Guided_Tour_Information_Amy.pdf''&lt;br /&gt;
&lt;br /&gt;
*Tobis tour notes: &amp;lt;br&amp;gt; ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/guidedtour.pdf''&lt;br /&gt;
&lt;br /&gt;
*Information on clocks: &amp;lt;br&amp;gt; ''/data/media/history/2009-01_KlassikUhren_Poehlmann_Max_Ort.pdf''&lt;br /&gt;
&lt;br /&gt;
*Information on history of the observatory and the collection: &amp;lt;br&amp;gt; ''/data/media/history/AstronomischeSammlung.pdf''&lt;br /&gt;
&lt;br /&gt;
*History of the observatory (Litten): &amp;lt;br&amp;gt; ''/data/media/history/Litten-1.pdf'' &amp;lt;br&amp;gt; ''/data/media/history/Litten-2.pdf''&lt;br /&gt;
&lt;br /&gt;
*Last will of Dr. Karl Remeis: &amp;lt;br&amp;gt; ''/data/media/history/Testament_Karl_Remeis.pdf''&lt;br /&gt;
&lt;br /&gt;
*Die Remeis-Sternwarte zu Bamberg 1889-1939, E. Zinner: &amp;lt;br&amp;gt; [https://articles.adsabs.harvard.edu/cgi-bin/nph-iarticle_query?1939VeBam...4....1Z&amp;amp;amp;data_type=PDF_HIGH&amp;amp;amp;whole_paper=YES&amp;amp;amp;type=PRINTER&amp;amp;amp;filetype=.pdf ADS]&lt;br /&gt;
&lt;br /&gt;
== Picture presentation ==&lt;br /&gt;
&lt;br /&gt;
There are different modes for the beamer (e.g. presentation, videos, graphics etc.) which result in a different appearance of the images. Make sure to select a presentation mode in which the pictures appear in an appropriate brightness on the screen. (I think &amp;quot;graphics&amp;quot; was a good one).&lt;br /&gt;
&lt;br /&gt;
== Telescopes in the domes ==&lt;br /&gt;
It's nice to show the main mirror to the people so that they can see themselves. To do so, just turn down the telescope in declination. This is only possible for the 40cm as the 50cm-Mount has a mechanical stop.&lt;br /&gt;
&lt;br /&gt;
Sometimes people want to know what we do with the tiny, little telescopes attached on the side of the big ones. Those are guiding-scopes. You can attach a camera to them and let it take pictures of one star. If the star moves (what it shouldn't do) a correction signal is sent to the mount to compensate the movement of the star. Stars can &amp;quot;move&amp;quot; in an image for example due to impreciseness of the mount. &lt;br /&gt;
&lt;br /&gt;
The (dusty) plate in front of the 40cm mirror is called &amp;quot;Schmid-Platte&amp;quot;. It is used to improve the imaging of the telescope and to correct several errors of the mirrors like coma and field-curvature. As it is very sensitive to scratching, it won't be cleaned and left dusty. But the dust has hardly any effect on the images as it lays far outside of the focusplane. The optical design is similar to a Ritchey-Chrétien type regarding the capability, but has a spherical main mirror, an aspherical secondary mirror and a lens-corrector (=Schmidt-plate). The price of the telescope and the mount is roughly about 25.000€ altogether.&lt;br /&gt;
&lt;br /&gt;
The 50cm doesn't have a Schmid-Platte but a corrector (lenses) placed in the OAZ. It has an elliptical main mirror and a spherical secondary mirror (Corrected Dall Kirkham). The price of the telescope and the mount is roughly about 65.000€. The secondary mirror is, compared to the size of the main mirror, significantly larger than the 40cm-sec. mirror. This results in a better luminosity an a larger, flat-field which is important for taking images. We can achieve tracking accuracies of about 10min without guiding.&lt;br /&gt;
&lt;br /&gt;
== Monthly public tours ==&lt;br /&gt;
NOTE: even if there is already someone listed for a tour, please enter you availability&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Date &lt;br /&gt;
! Language&lt;br /&gt;
! Time&lt;br /&gt;
! Type&lt;br /&gt;
! Available Guides&lt;br /&gt;
! Backup&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/09/..&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| no tour&lt;br /&gt;
| summer / lab break&lt;br /&gt;
| -&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 2023/10/10 &lt;br /&gt;
| English&lt;br /&gt;
| 7 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| Paavai &lt;br /&gt;
| Steven, Aafia&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/10/16 &lt;br /&gt;
| German&lt;br /&gt;
| 6:30 pm &lt;br /&gt;
| normal tour &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/10/18 &lt;br /&gt;
| German&lt;br /&gt;
| 6 pm &lt;br /&gt;
| Tour for children &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/10/24&lt;br /&gt;
| German&lt;br /&gt;
| 6:30 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| Philipp T.&lt;br /&gt;
| Steven&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 2023/11/07 &lt;br /&gt;
| English&lt;br /&gt;
| 6 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| Aafia&lt;br /&gt;
| &lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/11/14 &lt;br /&gt;
| German&lt;br /&gt;
| 6 pm &lt;br /&gt;
| Tour for children &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/11/28&lt;br /&gt;
| German&lt;br /&gt;
| 6 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| &lt;br /&gt;
| Philipp&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/12/05&lt;br /&gt;
| English&lt;br /&gt;
| 6 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| &lt;br /&gt;
| Philipp&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/12/12&lt;br /&gt;
| German&lt;br /&gt;
| 6 pm&lt;br /&gt;
| Tour for children&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/12/19&lt;br /&gt;
| German&lt;br /&gt;
| 6 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| &lt;br /&gt;
| Philipp&lt;br /&gt;
&lt;br /&gt;
== Tours looking for a guide ==&lt;br /&gt;
ATTENTION: tours are not sorted by the date of the tour, but the time when they were requested&lt;br /&gt;
&lt;br /&gt;
NOTE: please enter you availability even if there is already another name listed.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Date &lt;br /&gt;
! Language&lt;br /&gt;
! Time&lt;br /&gt;
! Organizer &lt;br /&gt;
! Additional information &lt;br /&gt;
! # People&lt;br /&gt;
! Observing&lt;br /&gt;
! Available Guides&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/10/19&lt;br /&gt;
| German&lt;br /&gt;
| 4 pm&lt;br /&gt;
| Frau Hörath&lt;br /&gt;
| need two guides (!)&lt;br /&gt;
| 30-40 adults&lt;br /&gt;
| no&lt;br /&gt;
| Philipp T. and Christian R.&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Observing ==&lt;br /&gt;
&lt;br /&gt;
[[Category:Internal]]&lt;/div&gt;</summary>
		<author><name>Thalhammer</name></author>
	</entry>
	<entry>
		<id>https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Guided_Tours_and_Public_Outreach&amp;diff=2990</id>
		<title>Guided Tours and Public Outreach</title>
		<link rel="alternate" type="text/html" href="https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Guided_Tours_and_Public_Outreach&amp;diff=2990"/>
		<updated>2023-09-25T09:25:20Z</updated>

		<summary type="html">&lt;p&gt;Thalhammer: /* Tours looking for a guide */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;On this pages you can find all information needed to guide a tour through our observatory for public people.&lt;br /&gt;
&lt;br /&gt;
At least, that's the aim of this page, so please add information if you think its missing!&lt;br /&gt;
&lt;br /&gt;
= Platform =&lt;br /&gt;
&lt;br /&gt;
'''The following is important:'''&amp;lt;br&amp;gt;&lt;br /&gt;
Tours are officially '''organized''' by the [http://foerderverein-sternwarte-bamberg.de Foerderverein of the observatory], but '''operated''' by the observatory staff to be insured through the university!&lt;br /&gt;
&lt;br /&gt;
The main platform for the general public is&amp;lt;br&amp;gt;[http://foerderverein-sternwarte-bamberg.de/fuehrungen http://foerderverein-sternwarte-bamberg.de/fuehrungen].&lt;br /&gt;
&lt;br /&gt;
Here, tours can be ordered in two different ways:&lt;br /&gt;
* single persons and smaller groups can directly book public and regular guided tours via our webform at&amp;lt;br&amp;gt;https://www.sternwarte.uni-erlangen.de/guided-tours/&lt;br /&gt;
* larger groups may directly ask for a tour at a separate date either by email to&amp;lt;br&amp;gt;[mailto:fuehrungen@foerderverein-sternwarte-bamberg.de fuehrungen@foerderverein-sternwarte-bamberg.de]&amp;lt;br&amp;gt;or by phone. The email address is a forwarding to a certain person of the mailing list (see below).&lt;br /&gt;
&lt;br /&gt;
The source code of the webform for booking a public tour can be found in the GIT repository at&amp;lt;br&amp;gt;&lt;br /&gt;
[https://www.sternwarte.uni-erlangen.de/gitlab/webmaster/guided-tours https://www.sternwarte.uni-erlangen.de/gitlab/webmaster/guided-tours].&amp;lt;br&amp;gt;&lt;br /&gt;
All pushes to the master branch are automatically deployed at the official URL above!&lt;br /&gt;
&lt;br /&gt;
== Mailing List / Current &amp;quot;staff&amp;quot; ==&lt;br /&gt;
&lt;br /&gt;
All people interested in giving guided tours are member of the mailing list&amp;lt;br&amp;gt;&lt;br /&gt;
[mailto:astro-fuehrungen@lists.fau.de astro-fuehrungen@lists.fau.de]&amp;lt;br&amp;gt;&lt;br /&gt;
Please '''do not share''' this address with anybody outside of the observatory!&lt;br /&gt;
If you're not on the list but interested in giving tours, just ask Max to add you :-)&lt;br /&gt;
&lt;br /&gt;
New tours without a guide yet are usually announced via this list. See [[Mailing lists]] for the list administrator.&lt;br /&gt;
&lt;br /&gt;
In charge of organization:&lt;br /&gt;
* Katrin&lt;br /&gt;
&lt;br /&gt;
Currently, the following people give tours on a regular basis:&lt;br /&gt;
* Dominic &lt;br /&gt;
* Ole&lt;br /&gt;
* Steven&lt;br /&gt;
* Christian&lt;br /&gt;
* Aafia&lt;br /&gt;
* Amy&lt;br /&gt;
* Julia&lt;br /&gt;
* Philipp T.&lt;br /&gt;
&lt;br /&gt;
= Tip policy =&lt;br /&gt;
&lt;br /&gt;
The group is informed beforehand about the rule of tip. &lt;br /&gt;
For the guides the following applies for the money you get during the tour:&lt;br /&gt;
During the week (Monday till Friday) the factor for the donation, which goes directly to the Foerderverein, is 1/3 (33%), the rest (2/3) is your personal tip.&lt;br /&gt;
For weekend tours (Saturday, Sunday) the factor for the donation is 1/4 (25%).&lt;br /&gt;
&lt;br /&gt;
Make sure to hand in the donations immediately after your tour. Put the money on Ingos desk with a note stating which tour you gave, how much you received and how many people were there.&lt;br /&gt;
&lt;br /&gt;
= Offering Tours =&lt;br /&gt;
&lt;br /&gt;
At some point you're perhaps asked to give a tour or if it is possible to have one on a specific date. The latter might occur if Edith is out of her office and her telephone is redirected. In those cases you should know ''and'' check following things:&lt;br /&gt;
* '''Who is asking''' for a tour? &amp;lt;br&amp;gt; If you're on the phone ask for a name and write down the phone number where the person can be called!&lt;br /&gt;
* The '''number of people should be between 15 and 25'''. &amp;lt;br&amp;gt; Of course, the boundary conditions depend on the person guiding the tour. In a case of doubt, ask the guide or, if none is found yet, you simply can't promise that there will be a tour! In that case you may offer to look for a guide giving the tour anyway (and call the person back), but again don't make any promises! A list of people offering tours can be found below.&lt;br /&gt;
* What is the '''average age of the persons attending''' the tour? &amp;lt;br&amp;gt; That's an important point since the content of a tour differs between children and adults, of course. Furthermore some guides have favorite age groups!&lt;br /&gt;
* Carefully check the '''date and time of the tour'''!&lt;br /&gt;
** It's most likely to find a guide if the weekday of a tour is '''between Monday and Thursday'''. Friday might work if it is before noon, otherwise people might be on the way into the weekend. In all other cases you may offer to look for a guide giving the tour anyway (see the point about the group size above).&lt;br /&gt;
** Make sure that there is '''no tour scheduled already'''! For that look into our online calendar (the link can be found below) and on the whiteboard in the copying machine office.&lt;br /&gt;
** Related to the last point ensure that there is '''no lab course''' running at the date! The lab course is also marked in our online calendar.&lt;br /&gt;
** Usually, a tour will take '''about 1.5 to 2 hours'''.&lt;br /&gt;
* Clarify the '''costs for a tour''' beforehand!! &amp;lt;br&amp;gt; Unfortunately, we are '''not allowed to ask for money''' for giving a tour! The only way for getting money is to tell the people that they are welcomed to '''donate money to the [http://foerderverein-sternwarte-bamberg.de/| Foerderverein der Sternwarte]'''. In nearly every case the people or the one asking for a tour will pay something. A rule of thumb is that '''every person donates 3 EUR''' (for children 2 EUR are alright as well). &amp;lt;br&amp;gt; __For your ears only__: 1 EUR per attended person of the donated money will be transferred to the Förderverein (the current treasurer is Ingo, leave the money on his desk with a short note stating the number of people and what kind of a tour this was), the rest is for the guide! There will be a contact phone-number available, best would be to call the contacts-person before the tour to tell them these infos...&lt;br /&gt;
* '''Observing with our telescopes''' is possible, of course, but only in case of '''night and cloudless weather'''! No kidding, some people are not aware of these facts... &amp;lt;br&amp;gt; (&amp;quot;The day is too bright to see stars.&amp;quot;, &amp;quot;I'm sorry, we can't look trough the clouds.&amp;quot;, &amp;quot;The weather forecast is too uncertain, we can't promise.&amp;quot;) Please check if someone else has already signed in for one of the telescopes on the day/night of the guided tour!&lt;br /&gt;
* If all the above points are clarified '''mark the tour''' &amp;lt;br&amp;gt; in our [https://www.sternwarte.uni-erlangen.de/calendar/ online calendar] and the whiteboard in the copying machine office. You have to be at a machine at the observatory to have access to the online calendar (to be more precisely: you're machine has to have an internal IP-address). &amp;lt;br&amp;gt; The entry into the online calendar, besides the date and time, should include &amp;quot;for whom is the tour and the group size, contact person and phone number, name of the guide giving the tour&amp;quot;. &amp;lt;br&amp;gt; The whiteboard template is as follows: &amp;quot;date, for whom is the tour, time, guide&amp;quot;&lt;br /&gt;
&lt;br /&gt;
= Giving a tour =&lt;br /&gt;
&lt;br /&gt;
Each tour has several stations, where you can show things or talk to the people. Useful information and experiences about that is listed below. It might be helpful as well to read the article about [[intern:popular_science:start|popular science]] in case you want or have to (if somebody asks) explain scientific aspects.&lt;br /&gt;
&lt;br /&gt;
== Preparation ==&lt;br /&gt;
&lt;br /&gt;
'''Before the tour'''&lt;br /&gt;
* Shut the doors of all offices in the main building (at least on the ground level) for several reasons: people are not allowed to walk in there and some of us are still working there during tours!&lt;br /&gt;
* Remove the northern hemisphere from the model of the inner solar system located in the entrance hall (you may put it into the Knigge room)&lt;br /&gt;
* Switch the lights on you need:&lt;br /&gt;
** entrance hall&lt;br /&gt;
** meteorite showcase (switch is on the right next to it)&lt;br /&gt;
** hallway to the meridian building; here are multiple switches&lt;br /&gt;
*** main light: right next to the door of the hallway or the backdoor of the main building (labeled &amp;quot;Meridian&amp;quot;)&lt;br /&gt;
*** info panels: on the opposite wall to the door next to the blue cupboard&lt;br /&gt;
*** showcases and Blinkkomparator: in the cutout box up the few stairs on the right wall close to the library, labeled &amp;quot;Linke Steckdosen&amp;quot;&lt;br /&gt;
* In case of observations&lt;br /&gt;
** carry the needed oculars into the domes (for observations with the naked eye, the 40cm telescope is strongly recommended)&lt;br /&gt;
** do __not__ open the domes (first, it might start raining while nobody is there, and it's more fun for you to let the people do it)&lt;br /&gt;
** do __not__ remove the dust covers of the telescopes (wait until the dome has been opened)&lt;br /&gt;
** read the [[remeis:start|guide how to operate the telescopes and mountings]]&lt;br /&gt;
* In case of showing nice pictures&lt;br /&gt;
** make sure enough chairs are available&lt;br /&gt;
** switch on the beamer in the library, log into the machine and start your presentation, picture-viewer, ...&lt;br /&gt;
 &lt;br /&gt;
'''After the tour'''&lt;br /&gt;
* Switch the lights off&lt;br /&gt;
* Shut down the telescope mounting, put the dust covers back on and close the domes&lt;br /&gt;
* Logout of the used machines and switch the beamer off&lt;br /&gt;
* Put on the dust covers of the telescopes in the hallway&lt;br /&gt;
* Protect the photo plates on the Blinkkomparator from getting dusty&lt;br /&gt;
* '''Move the entry from the whiteboard''' in the copying machine office '''to the list attached to the pin-board''' next to it&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Material and Presentations ==&lt;br /&gt;
*Collected information valuable for guided tours: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours'' and ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/guidedtour.pdf''&lt;br /&gt;
&lt;br /&gt;
*A merger of (picture/video) presentations given at guided tours: &amp;lt;br&amp;gt; ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/guidedtour.odp'' &lt;br /&gt;
&lt;br /&gt;
*and according videos in  &amp;lt;br&amp;gt; ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/videos/''&lt;br /&gt;
&lt;br /&gt;
*Research and activities at Remeis from the radio to the gamma-rays (Tobi Beuchert): &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Andrea_tour_material/observations_allwavelength_remeisresearch_beuchert.pdf''&lt;br /&gt;
&lt;br /&gt;
*A presentation showing the astrophotography done at the observatory: &amp;lt;br&amp;gt; ''/data/media/slideshow_astrophotographie/optische_Quellen.pdf''&lt;br /&gt;
&lt;br /&gt;
*A video tour with Joern: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Joerns_example_tour''&lt;br /&gt;
&lt;br /&gt;
*A video tour with Uli (only hallway): &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Ulis_example_tour_hall_2019''&lt;br /&gt;
&lt;br /&gt;
*A complete tour by Sebastian Müller: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Sebastians_example_tour''&lt;br /&gt;
&lt;br /&gt;
*Presentations for tours by Andrea Gokus: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Andrea_tour_material'' &amp;lt;br&amp;gt; Contains presentations about the solar system (solar_system.pdf), neutrinos (neutrino_talk.pdf), overview of different objet types (impressions_universe.pdf)&lt;br /&gt;
&lt;br /&gt;
*Andreas tour notes: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Andrea_tour_material/Sternwarten_Fuehrungsnotizen.pdf''&lt;br /&gt;
&lt;br /&gt;
*Amys tour notes: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Guided_Tour_Information_Amy.pdf''&lt;br /&gt;
&lt;br /&gt;
*Tobis tour notes: &amp;lt;br&amp;gt; ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/guidedtour.pdf''&lt;br /&gt;
&lt;br /&gt;
*Information on clocks: &amp;lt;br&amp;gt; ''/data/media/history/2009-01_KlassikUhren_Poehlmann_Max_Ort.pdf''&lt;br /&gt;
&lt;br /&gt;
*Information on history of the observatory and the collection: &amp;lt;br&amp;gt; ''/data/media/history/AstronomischeSammlung.pdf''&lt;br /&gt;
&lt;br /&gt;
*History of the observatory (Litten): &amp;lt;br&amp;gt; ''/data/media/history/Litten-1.pdf'' &amp;lt;br&amp;gt; ''/data/media/history/Litten-2.pdf''&lt;br /&gt;
&lt;br /&gt;
*Last will of Dr. Karl Remeis: &amp;lt;br&amp;gt; ''/data/media/history/Testament_Karl_Remeis.pdf''&lt;br /&gt;
&lt;br /&gt;
*Die Remeis-Sternwarte zu Bamberg 1889-1939, E. Zinner: &amp;lt;br&amp;gt; [https://articles.adsabs.harvard.edu/cgi-bin/nph-iarticle_query?1939VeBam...4....1Z&amp;amp;amp;data_type=PDF_HIGH&amp;amp;amp;whole_paper=YES&amp;amp;amp;type=PRINTER&amp;amp;amp;filetype=.pdf ADS]&lt;br /&gt;
&lt;br /&gt;
== Picture presentation ==&lt;br /&gt;
&lt;br /&gt;
There are different modes for the beamer (e.g. presentation, videos, graphics etc.) which result in a different appearance of the images. Make sure to select a presentation mode in which the pictures appear in an appropriate brightness on the screen. (I think &amp;quot;graphics&amp;quot; was a good one).&lt;br /&gt;
&lt;br /&gt;
== Telescopes in the domes ==&lt;br /&gt;
It's nice to show the main mirror to the people so that they can see themselves. To do so, just turn down the telescope in declination. This is only possible for the 40cm as the 50cm-Mount has a mechanical stop.&lt;br /&gt;
&lt;br /&gt;
Sometimes people want to know what we do with the tiny, little telescopes attached on the side of the big ones. Those are guiding-scopes. You can attach a camera to them and let it take pictures of one star. If the star moves (what it shouldn't do) a correction signal is sent to the mount to compensate the movement of the star. Stars can &amp;quot;move&amp;quot; in an image for example due to impreciseness of the mount. &lt;br /&gt;
&lt;br /&gt;
The (dusty) plate in front of the 40cm mirror is called &amp;quot;Schmid-Platte&amp;quot;. It is used to improve the imaging of the telescope and to correct several errors of the mirrors like coma and field-curvature. As it is very sensitive to scratching, it won't be cleaned and left dusty. But the dust has hardly any effect on the images as it lays far outside of the focusplane. The optical design is similar to a Ritchey-Chrétien type regarding the capability, but has a spherical main mirror, an aspherical secondary mirror and a lens-corrector (=Schmidt-plate). The price of the telescope and the mount is roughly about 25.000€ altogether.&lt;br /&gt;
&lt;br /&gt;
The 50cm doesn't have a Schmid-Platte but a corrector (lenses) placed in the OAZ. It has an elliptical main mirror and a spherical secondary mirror (Corrected Dall Kirkham). The price of the telescope and the mount is roughly about 65.000€. The secondary mirror is, compared to the size of the main mirror, significantly larger than the 40cm-sec. mirror. This results in a better luminosity an a larger, flat-field which is important for taking images. We can achieve tracking accuracies of about 10min without guiding.&lt;br /&gt;
&lt;br /&gt;
== Monthly public tours ==&lt;br /&gt;
NOTE: even if there is already someone listed for a tour, please enter you availability&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Date &lt;br /&gt;
! Language&lt;br /&gt;
! Time&lt;br /&gt;
! Type&lt;br /&gt;
! Available Guides&lt;br /&gt;
! Backup&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/09/..&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| no tour&lt;br /&gt;
| summer / lab break&lt;br /&gt;
| -&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 2023/10/10 &lt;br /&gt;
| English&lt;br /&gt;
| 7 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| Paavai &lt;br /&gt;
| Steven, Aafia&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/10/18 &lt;br /&gt;
| German&lt;br /&gt;
| 6 pm &lt;br /&gt;
| Tour for children &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/10/24&lt;br /&gt;
| German&lt;br /&gt;
| 6:30 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| Philipp T.&lt;br /&gt;
| Steven&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 2023/11/07 &lt;br /&gt;
| English&lt;br /&gt;
| 6 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| Aafia&lt;br /&gt;
| &lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/11/14 &lt;br /&gt;
| German&lt;br /&gt;
| 6 pm &lt;br /&gt;
| Tour for children &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/11/28&lt;br /&gt;
| German&lt;br /&gt;
| 6 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/12/05&lt;br /&gt;
| English&lt;br /&gt;
| 6 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/12/12&lt;br /&gt;
| German&lt;br /&gt;
| 6 pm&lt;br /&gt;
| Tour for children&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/12/19&lt;br /&gt;
| German&lt;br /&gt;
| 6 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Tours looking for a guide ==&lt;br /&gt;
ATTENTION: tours are not sorted by the date of the tour, but the time when they were requested&lt;br /&gt;
&lt;br /&gt;
NOTE: please enter you availability even if there is already another name listed.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Date &lt;br /&gt;
! Language&lt;br /&gt;
! Time&lt;br /&gt;
! Organizer &lt;br /&gt;
! Additional information &lt;br /&gt;
! # People&lt;br /&gt;
! Observing&lt;br /&gt;
! Available Guides&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/10/19&lt;br /&gt;
| German&lt;br /&gt;
| 4 pm&lt;br /&gt;
| Frau Hörath&lt;br /&gt;
| &lt;br /&gt;
| 30-40 adults&lt;br /&gt;
| no&lt;br /&gt;
| Philipp T.&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Observing ==&lt;br /&gt;
&lt;br /&gt;
[[Category:Internal]]&lt;/div&gt;</summary>
		<author><name>Thalhammer</name></author>
	</entry>
	<entry>
		<id>https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Guided_Tours_and_Public_Outreach&amp;diff=2923</id>
		<title>Guided Tours and Public Outreach</title>
		<link rel="alternate" type="text/html" href="https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Guided_Tours_and_Public_Outreach&amp;diff=2923"/>
		<updated>2023-08-21T09:46:26Z</updated>

		<summary type="html">&lt;p&gt;Thalhammer: /* Tours looking for a guide */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;On this pages you can find all information needed to guide a tour through our observatory for public people.&lt;br /&gt;
&lt;br /&gt;
At least, that's the aim of this page, so please add information if you think its missing!&lt;br /&gt;
&lt;br /&gt;
= Platform =&lt;br /&gt;
&lt;br /&gt;
'''The following is important:'''&amp;lt;br&amp;gt;&lt;br /&gt;
Tours are officially '''organized''' by the [http://foerderverein-sternwarte-bamberg.de Foerderverein of the observatory], but '''operated''' by the observatory staff to be insured through the university!&lt;br /&gt;
&lt;br /&gt;
The main platform for the general public is&amp;lt;br&amp;gt;[http://foerderverein-sternwarte-bamberg.de/fuehrungen http://foerderverein-sternwarte-bamberg.de/fuehrungen].&lt;br /&gt;
&lt;br /&gt;
Here, tours can be ordered in two different ways:&lt;br /&gt;
* single persons and smaller groups can directly book public and regular guided tours via our webform at&amp;lt;br&amp;gt;https://www.sternwarte.uni-erlangen.de/guided-tours/&lt;br /&gt;
* larger groups may directly ask for a tour at a separate date either by email to&amp;lt;br&amp;gt;[mailto:fuehrungen@foerderverein-sternwarte-bamberg.de fuehrungen@foerderverein-sternwarte-bamberg.de]&amp;lt;br&amp;gt;or by phone. The email address is a forwarding to a certain person of the mailing list (see below).&lt;br /&gt;
&lt;br /&gt;
The source code of the webform for booking a public tour can be found in the GIT repository at&amp;lt;br&amp;gt;&lt;br /&gt;
[https://www.sternwarte.uni-erlangen.de/gitlab/webmaster/guided-tours https://www.sternwarte.uni-erlangen.de/gitlab/webmaster/guided-tours].&amp;lt;br&amp;gt;&lt;br /&gt;
All pushes to the master branch are automatically deployed at the official URL above!&lt;br /&gt;
&lt;br /&gt;
== Mailing List / Current &amp;quot;staff&amp;quot; ==&lt;br /&gt;
&lt;br /&gt;
All people interested in giving guided tours are member of the mailing list&amp;lt;br&amp;gt;&lt;br /&gt;
[mailto:astro-fuehrungen@lists.fau.de astro-fuehrungen@lists.fau.de]&amp;lt;br&amp;gt;&lt;br /&gt;
Please '''do not share''' this address with anybody outside of the observatory!&lt;br /&gt;
If you're not on the list but interested in giving tours, just ask Max to add you :-)&lt;br /&gt;
&lt;br /&gt;
New tours without a guide yet are usually announced via this list. See [[Mailing lists]] for the list administrator.&lt;br /&gt;
&lt;br /&gt;
In charge of organization:&lt;br /&gt;
* Katrin&lt;br /&gt;
&lt;br /&gt;
Currently, the following people give tours on a regular basis:&lt;br /&gt;
* Dominic &lt;br /&gt;
* Ole&lt;br /&gt;
* Steven&lt;br /&gt;
* Christian&lt;br /&gt;
* Aafia&lt;br /&gt;
* Amy&lt;br /&gt;
* Julia&lt;br /&gt;
* Philipp T.&lt;br /&gt;
&lt;br /&gt;
= Tip policy =&lt;br /&gt;
&lt;br /&gt;
The group is informed beforehand about the rule of tip. &lt;br /&gt;
For the guides the following applies for the money you get during the tour:&lt;br /&gt;
During the week (Monday till Friday) the factor for the donation, which goes directly to the Foerderverein, is 1/3 (33%), the rest (2/3) is your personal tip.&lt;br /&gt;
For weekend tours (Saturday, Sunday) the factor for the donation is 1/4 (25%).&lt;br /&gt;
&lt;br /&gt;
Make sure to hand in the donations immediately after your tour. Put the money on Ingos desk with a note stating which tour you gave, how much you received and how many people were there.&lt;br /&gt;
&lt;br /&gt;
= Offering Tours =&lt;br /&gt;
&lt;br /&gt;
At some point you're perhaps asked to give a tour or if it is possible to have one on a specific date. The latter might occur if Edith is out of her office and her telephone is redirected. In those cases you should know ''and'' check following things:&lt;br /&gt;
* '''Who is asking''' for a tour? &amp;lt;br&amp;gt; If you're on the phone ask for a name and write down the phone number where the person can be called!&lt;br /&gt;
* The '''number of people should be between 15 and 25'''. &amp;lt;br&amp;gt; Of course, the boundary conditions depend on the person guiding the tour. In a case of doubt, ask the guide or, if none is found yet, you simply can't promise that there will be a tour! In that case you may offer to look for a guide giving the tour anyway (and call the person back), but again don't make any promises! A list of people offering tours can be found below.&lt;br /&gt;
* What is the '''average age of the persons attending''' the tour? &amp;lt;br&amp;gt; That's an important point since the content of a tour differs between children and adults, of course. Furthermore some guides have favorite age groups!&lt;br /&gt;
* Carefully check the '''date and time of the tour'''!&lt;br /&gt;
** It's most likely to find a guide if the weekday of a tour is '''between Monday and Thursday'''. Friday might work if it is before noon, otherwise people might be on the way into the weekend. In all other cases you may offer to look for a guide giving the tour anyway (see the point about the group size above).&lt;br /&gt;
** Make sure that there is '''no tour scheduled already'''! For that look into our online calendar (the link can be found below) and on the whiteboard in the copying machine office.&lt;br /&gt;
** Related to the last point ensure that there is '''no lab course''' running at the date! The lab course is also marked in our online calendar.&lt;br /&gt;
** Usually, a tour will take '''about 1.5 to 2 hours'''.&lt;br /&gt;
* Clarify the '''costs for a tour''' beforehand!! &amp;lt;br&amp;gt; Unfortunately, we are '''not allowed to ask for money''' for giving a tour! The only way for getting money is to tell the people that they are welcomed to '''donate money to the [http://foerderverein-sternwarte-bamberg.de/| Foerderverein der Sternwarte]'''. In nearly every case the people or the one asking for a tour will pay something. A rule of thumb is that '''every person donates 3 EUR''' (for children 2 EUR are alright as well). &amp;lt;br&amp;gt; __For your ears only__: 1 EUR per attended person of the donated money will be transferred to the Förderverein (the current treasurer is Ingo, leave the money on his desk with a short note stating the number of people and what kind of a tour this was), the rest is for the guide! There will be a contact phone-number available, best would be to call the contacts-person before the tour to tell them these infos...&lt;br /&gt;
* '''Observing with our telescopes''' is possible, of course, but only in case of '''night and cloudless weather'''! No kidding, some people are not aware of these facts... &amp;lt;br&amp;gt; (&amp;quot;The day is too bright to see stars.&amp;quot;, &amp;quot;I'm sorry, we can't look trough the clouds.&amp;quot;, &amp;quot;The weather forecast is too uncertain, we can't promise.&amp;quot;) Please check if someone else has already signed in for one of the telescopes on the day/night of the guided tour!&lt;br /&gt;
* If all the above points are clarified '''mark the tour''' &amp;lt;br&amp;gt; in our [https://www.sternwarte.uni-erlangen.de/calendar/ online calendar] and the whiteboard in the copying machine office. You have to be at a machine at the observatory to have access to the online calendar (to be more precisely: you're machine has to have an internal IP-address). &amp;lt;br&amp;gt; The entry into the online calendar, besides the date and time, should include &amp;quot;for whom is the tour and the group size, contact person and phone number, name of the guide giving the tour&amp;quot;. &amp;lt;br&amp;gt; The whiteboard template is as follows: &amp;quot;date, for whom is the tour, time, guide&amp;quot;&lt;br /&gt;
&lt;br /&gt;
= Giving a tour =&lt;br /&gt;
&lt;br /&gt;
Each tour has several stations, where you can show things or talk to the people. Useful information and experiences about that is listed below. It might be helpful as well to read the article about [[intern:popular_science:start|popular science]] in case you want or have to (if somebody asks) explain scientific aspects.&lt;br /&gt;
&lt;br /&gt;
== Preparation ==&lt;br /&gt;
&lt;br /&gt;
'''Before the tour'''&lt;br /&gt;
* Shut the doors of all offices in the main building (at least on the ground level) for several reasons: people are not allowed to walk in there and some of us are still working there during tours!&lt;br /&gt;
* Remove the northern hemisphere from the model of the inner solar system located in the entrance hall (you may put it into the Knigge room)&lt;br /&gt;
* Switch the lights on you need:&lt;br /&gt;
** entrance hall&lt;br /&gt;
** meteorite showcase (switch is on the right next to it)&lt;br /&gt;
** hallway to the meridian building; here are multiple switches&lt;br /&gt;
*** main light: right next to the door of the hallway or the backdoor of the main building (labeled &amp;quot;Meridian&amp;quot;)&lt;br /&gt;
*** info panels: on the opposite wall to the door next to the blue cupboard&lt;br /&gt;
*** showcases and Blinkkomparator: in the cutout box up the few stairs on the right wall close to the library, labeled &amp;quot;Linke Steckdosen&amp;quot;&lt;br /&gt;
* In case of observations&lt;br /&gt;
** carry the needed oculars into the domes (for observations with the naked eye, the 40cm telescope is strongly recommended)&lt;br /&gt;
** do __not__ open the domes (first, it might start raining while nobody is there, and it's more fun for you to let the people do it)&lt;br /&gt;
** do __not__ remove the dust covers of the telescopes (wait until the dome has been opened)&lt;br /&gt;
** read the [[remeis:start|guide how to operate the telescopes and mountings]]&lt;br /&gt;
* In case of showing nice pictures&lt;br /&gt;
** make sure enough chairs are available&lt;br /&gt;
** switch on the beamer in the library, log into the machine and start your presentation, picture-viewer, ...&lt;br /&gt;
 &lt;br /&gt;
'''After the tour'''&lt;br /&gt;
* Switch the lights off&lt;br /&gt;
* Shut down the telescope mounting, put the dust covers back on and close the domes&lt;br /&gt;
* Logout of the used machines and switch the beamer off&lt;br /&gt;
* Put on the dust covers of the telescopes in the hallway&lt;br /&gt;
* Protect the photo plates on the Blinkkomparator from getting dusty&lt;br /&gt;
* '''Move the entry from the whiteboard''' in the copying machine office '''to the list attached to the pin-board''' next to it&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Material and Presentations ==&lt;br /&gt;
*Collected information valuable for guided tours: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours'' and ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/guidedtour.pdf''&lt;br /&gt;
&lt;br /&gt;
*A merger of (picture/video) presentations given at guided tours: &amp;lt;br&amp;gt; ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/guidedtour.odp'' &lt;br /&gt;
&lt;br /&gt;
*and according videos in  &amp;lt;br&amp;gt; ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/videos/''&lt;br /&gt;
&lt;br /&gt;
*Research and activities at Remeis from the radio to the gamma-rays (Tobi Beuchert): &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Andrea_tour_material/observations_allwavelength_remeisresearch_beuchert.pdf''&lt;br /&gt;
&lt;br /&gt;
*A presentation showing the astrophotography done at the observatory: &amp;lt;br&amp;gt; ''/data/media/slideshow_astrophotographie/optische_Quellen.pdf''&lt;br /&gt;
&lt;br /&gt;
*A video tour with Joern: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Joerns_example_tour''&lt;br /&gt;
&lt;br /&gt;
*A video tour with Uli (only hallway): &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Ulis_example_tour_hall_2019''&lt;br /&gt;
&lt;br /&gt;
*A complete tour by Sebastian Müller: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Sebastians_example_tour''&lt;br /&gt;
&lt;br /&gt;
*Presentations for tours by Andrea Gokus: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Andrea_tour_material'' &amp;lt;br&amp;gt; Contains presentations about the solar system (solar_system.pdf), neutrinos (neutrino_talk.pdf), overview of different objet types (impressions_universe.pdf)&lt;br /&gt;
&lt;br /&gt;
*Andreas tour notes: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Andrea_tour_material/Sternwarten_Fuehrungsnotizen.pdf''&lt;br /&gt;
&lt;br /&gt;
*Amys tour notes: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Guided_Tour_Information_Amy.pdf''&lt;br /&gt;
&lt;br /&gt;
*Tobis tour notes: &amp;lt;br&amp;gt; ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/guidedtour.pdf''&lt;br /&gt;
&lt;br /&gt;
*Information on clocks: &amp;lt;br&amp;gt; ''/data/media/history/2009-01_KlassikUhren_Poehlmann_Max_Ort.pdf''&lt;br /&gt;
&lt;br /&gt;
*Information on history of the observatory and the collection: &amp;lt;br&amp;gt; ''/data/media/history/AstronomischeSammlung.pdf''&lt;br /&gt;
&lt;br /&gt;
*History of the observatory (Litten): &amp;lt;br&amp;gt; ''/data/media/history/Litten-1.pdf'' &amp;lt;br&amp;gt; ''/data/media/history/Litten-2.pdf''&lt;br /&gt;
&lt;br /&gt;
*Last will of Dr. Karl Remeis: &amp;lt;br&amp;gt; ''/data/media/history/Testament_Karl_Remeis.pdf''&lt;br /&gt;
&lt;br /&gt;
*Die Remeis-Sternwarte zu Bamberg 1889-1939, E. Zinner: &amp;lt;br&amp;gt; [https://articles.adsabs.harvard.edu/cgi-bin/nph-iarticle_query?1939VeBam...4....1Z&amp;amp;amp;data_type=PDF_HIGH&amp;amp;amp;whole_paper=YES&amp;amp;amp;type=PRINTER&amp;amp;amp;filetype=.pdf ADS]&lt;br /&gt;
&lt;br /&gt;
== Picture presentation ==&lt;br /&gt;
&lt;br /&gt;
There are different modes for the beamer (e.g. presentation, videos, graphics etc.) which result in a different appearance of the images. Make sure to select a presentation mode in which the pictures appear in an appropriate brightness on the screen. (I think &amp;quot;graphics&amp;quot; was a good one).&lt;br /&gt;
&lt;br /&gt;
== Telescopes in the domes ==&lt;br /&gt;
It's nice to show the main mirror to the people so that they can see themselves. To do so, just turn down the telescope in declination. This is only possible for the 40cm as the 50cm-Mount has a mechanical stop.&lt;br /&gt;
&lt;br /&gt;
Sometimes people want to know what we do with the tiny, little telescopes attached on the side of the big ones. Those are guiding-scopes. You can attach a camera to them and let it take pictures of one star. If the star moves (what it shouldn't do) a correction signal is sent to the mount to compensate the movement of the star. Stars can &amp;quot;move&amp;quot; in an image for example due to impreciseness of the mount. &lt;br /&gt;
&lt;br /&gt;
The (dusty) plate in front of the 40cm mirror is called &amp;quot;Schmid-Platte&amp;quot;. It is used to improve the imaging of the telescope and to correct several errors of the mirrors like coma and field-curvature. As it is very sensitive to scratching, it won't be cleaned and left dusty. But the dust has hardly any effect on the images as it lays far outside of the focusplane. The optical design is similar to a Ritchey-Chrétien type regarding the capability, but has a spherical main mirror, an aspherical secondary mirror and a lens-corrector (=Schmidt-plate). The price of the telescope and the mount is roughly about 25.000€ altogether.&lt;br /&gt;
&lt;br /&gt;
The 50cm doesn't have a Schmid-Platte but a corrector (lenses) placed in the OAZ. It has an elliptical main mirror and a spherical secondary mirror (Corrected Dall Kirkham). The price of the telescope and the mount is roughly about 65.000€. The secondary mirror is, compared to the size of the main mirror, significantly larger than the 40cm-sec. mirror. This results in a better luminosity an a larger, flat-field which is important for taking images. We can achieve tracking accuracies of about 10min without guiding.&lt;br /&gt;
&lt;br /&gt;
== Monthly public tours ==&lt;br /&gt;
NOTE: even if there is already someone listed for a tour, please enter you availability&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Date &lt;br /&gt;
! Language&lt;br /&gt;
! Time&lt;br /&gt;
! Type&lt;br /&gt;
! Available Guides&lt;br /&gt;
! Backup&lt;br /&gt;
|- &lt;br /&gt;
| 2023/08/01 &lt;br /&gt;
| English&lt;br /&gt;
| 9 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| Philipp T.&lt;br /&gt;
| Aafia&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/08/15 &lt;br /&gt;
| German&lt;br /&gt;
| 6 pm  &lt;br /&gt;
| Tour for children &lt;br /&gt;
| Steven&lt;br /&gt;
| &lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/08/29&lt;br /&gt;
| German&lt;br /&gt;
| 8 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| Christian R.&lt;br /&gt;
| Steven, Philipp T.&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/09/..&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| no tour&lt;br /&gt;
| summer break&lt;br /&gt;
| -&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 2023/10/10 &lt;br /&gt;
| English&lt;br /&gt;
| 7 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| Paavai &lt;br /&gt;
| Steven, Aafia&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/10/18 &lt;br /&gt;
| German&lt;br /&gt;
| 6 pm &lt;br /&gt;
| Tour for children &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/10/24&lt;br /&gt;
| German&lt;br /&gt;
| 6:30 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| Philipp T.&lt;br /&gt;
| Steven&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 2023/11/07 &lt;br /&gt;
| English&lt;br /&gt;
| 6 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| Aafia&lt;br /&gt;
| &lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/11/14 &lt;br /&gt;
| German&lt;br /&gt;
| 6 pm &lt;br /&gt;
| Tour for children &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/11/28&lt;br /&gt;
| German&lt;br /&gt;
| 6 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Tours looking for a guide ==&lt;br /&gt;
ATTENTION: tours are not sorted by the date of the tour, but the time when they were requested&lt;br /&gt;
&lt;br /&gt;
NOTE: please enter you availability even if there is already another name listed.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Date &lt;br /&gt;
! Language&lt;br /&gt;
! Time&lt;br /&gt;
! Organizer &lt;br /&gt;
! Additional information &lt;br /&gt;
! # People&lt;br /&gt;
! Observing&lt;br /&gt;
! Available Guides&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/10/17&lt;br /&gt;
| German&lt;br /&gt;
| evening&lt;br /&gt;
| Gymnasium Eckental&lt;br /&gt;
| School class 5th grade&lt;br /&gt;
| 26 children + 2 adults&lt;br /&gt;
| yes&lt;br /&gt;
| (add names here)&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/11/22&lt;br /&gt;
| German&lt;br /&gt;
| 11 am&lt;br /&gt;
| Oberlandesgericht Bamberg&lt;br /&gt;
| Children age 6-11&lt;br /&gt;
| 25 children + 3-4 adults&lt;br /&gt;
| no&lt;br /&gt;
| (add names here)&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/08/21&lt;br /&gt;
| German&lt;br /&gt;
| evening&lt;br /&gt;
| Fr. Beck&lt;br /&gt;
| Children age 8 and 10&lt;br /&gt;
| 2 children + 3 adults&lt;br /&gt;
| yes&lt;br /&gt;
| Philipp T.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Observing ==&lt;br /&gt;
&lt;br /&gt;
[[Category:Internal]]&lt;/div&gt;</summary>
		<author><name>Thalhammer</name></author>
	</entry>
	<entry>
		<id>https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Guided_Tours_and_Public_Outreach&amp;diff=2916</id>
		<title>Guided Tours and Public Outreach</title>
		<link rel="alternate" type="text/html" href="https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Guided_Tours_and_Public_Outreach&amp;diff=2916"/>
		<updated>2023-08-09T14:38:54Z</updated>

		<summary type="html">&lt;p&gt;Thalhammer: /* Monthly public tours */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;On this pages you can find all information needed to guide a tour through our observatory for public people.&lt;br /&gt;
&lt;br /&gt;
At least, that's the aim of this page, so please add information if you think its missing!&lt;br /&gt;
&lt;br /&gt;
= Platform =&lt;br /&gt;
&lt;br /&gt;
'''The following is important:'''&amp;lt;br&amp;gt;&lt;br /&gt;
Tours are officially '''organized''' by the [http://foerderverein-sternwarte-bamberg.de Foerderverein of the observatory], but '''operated''' by the observatory staff to be insured through the university!&lt;br /&gt;
&lt;br /&gt;
The main platform for the general public is&amp;lt;br&amp;gt;[http://foerderverein-sternwarte-bamberg.de/fuehrungen http://foerderverein-sternwarte-bamberg.de/fuehrungen].&lt;br /&gt;
&lt;br /&gt;
Here, tours can be ordered in two different ways:&lt;br /&gt;
* single persons and smaller groups can directly book public and regular guided tours via our webform at&amp;lt;br&amp;gt;https://www.sternwarte.uni-erlangen.de/guided-tours/&lt;br /&gt;
* larger groups may directly ask for a tour at a separate date either by email to&amp;lt;br&amp;gt;[mailto:fuehrungen@foerderverein-sternwarte-bamberg.de fuehrungen@foerderverein-sternwarte-bamberg.de]&amp;lt;br&amp;gt;or by phone. The email address is a forwarding to a certain person of the mailing list (see below).&lt;br /&gt;
&lt;br /&gt;
The source code of the webform for booking a public tour can be found in the GIT repository at&amp;lt;br&amp;gt;&lt;br /&gt;
[https://www.sternwarte.uni-erlangen.de/gitlab/webmaster/guided-tours https://www.sternwarte.uni-erlangen.de/gitlab/webmaster/guided-tours].&amp;lt;br&amp;gt;&lt;br /&gt;
All pushes to the master branch are automatically deployed at the official URL above!&lt;br /&gt;
&lt;br /&gt;
== Mailing List / Current &amp;quot;staff&amp;quot; ==&lt;br /&gt;
&lt;br /&gt;
All people interested in giving guided tours are member of the mailing list&amp;lt;br&amp;gt;&lt;br /&gt;
[mailto:astro-fuehrungen@lists.fau.de astro-fuehrungen@lists.fau.de]&amp;lt;br&amp;gt;&lt;br /&gt;
Please '''do not share''' this address with anybody outside of the observatory!&lt;br /&gt;
If you're not on the list but interested in giving tours, just ask Max to add you :-)&lt;br /&gt;
&lt;br /&gt;
New tours without a guide yet are usually announced via this list. See [[Mailing lists]] for the list administrator.&lt;br /&gt;
&lt;br /&gt;
In charge of organization:&lt;br /&gt;
* Katrin&lt;br /&gt;
&lt;br /&gt;
Currently, the following people give tours on a regular basis:&lt;br /&gt;
* Dominic &lt;br /&gt;
* Ole&lt;br /&gt;
* Steven&lt;br /&gt;
* Christian&lt;br /&gt;
* Aafia&lt;br /&gt;
* Amy&lt;br /&gt;
* Julia&lt;br /&gt;
* Philipp T.&lt;br /&gt;
&lt;br /&gt;
= Tip policy =&lt;br /&gt;
&lt;br /&gt;
The group is informed beforehand about the rule of tip. &lt;br /&gt;
For the guides the following applies for the money you get during the tour:&lt;br /&gt;
During the week (Monday till Friday) the factor for the donation, which goes directly to the Foerderverein, is 1/3 (33%), the rest (2/3) is your personal tip.&lt;br /&gt;
For weekend tours (Saturday, Sunday) the factor for the donation is 1/4 (25%).&lt;br /&gt;
&lt;br /&gt;
Make sure to hand in the donations immediately after your tour. Put the money on Ingos desk with a note stating which tour you gave, how much you received and how many people were there.&lt;br /&gt;
&lt;br /&gt;
= Offering Tours =&lt;br /&gt;
&lt;br /&gt;
At some point you're perhaps asked to give a tour or if it is possible to have one on a specific date. The latter might occur if Edith is out of her office and her telephone is redirected. In those cases you should know ''and'' check following things:&lt;br /&gt;
* '''Who is asking''' for a tour? &amp;lt;br&amp;gt; If you're on the phone ask for a name and write down the phone number where the person can be called!&lt;br /&gt;
* The '''number of people should be between 15 and 25'''. &amp;lt;br&amp;gt; Of course, the boundary conditions depend on the person guiding the tour. In a case of doubt, ask the guide or, if none is found yet, you simply can't promise that there will be a tour! In that case you may offer to look for a guide giving the tour anyway (and call the person back), but again don't make any promises! A list of people offering tours can be found below.&lt;br /&gt;
* What is the '''average age of the persons attending''' the tour? &amp;lt;br&amp;gt; That's an important point since the content of a tour differs between children and adults, of course. Furthermore some guides have favorite age groups!&lt;br /&gt;
* Carefully check the '''date and time of the tour'''!&lt;br /&gt;
** It's most likely to find a guide if the weekday of a tour is '''between Monday and Thursday'''. Friday might work if it is before noon, otherwise people might be on the way into the weekend. In all other cases you may offer to look for a guide giving the tour anyway (see the point about the group size above).&lt;br /&gt;
** Make sure that there is '''no tour scheduled already'''! For that look into our online calendar (the link can be found below) and on the whiteboard in the copying machine office.&lt;br /&gt;
** Related to the last point ensure that there is '''no lab course''' running at the date! The lab course is also marked in our online calendar.&lt;br /&gt;
** Usually, a tour will take '''about 1.5 to 2 hours'''.&lt;br /&gt;
* Clarify the '''costs for a tour''' beforehand!! &amp;lt;br&amp;gt; Unfortunately, we are '''not allowed to ask for money''' for giving a tour! The only way for getting money is to tell the people that they are welcomed to '''donate money to the [http://foerderverein-sternwarte-bamberg.de/| Foerderverein der Sternwarte]'''. In nearly every case the people or the one asking for a tour will pay something. A rule of thumb is that '''every person donates 3 EUR''' (for children 2 EUR are alright as well). &amp;lt;br&amp;gt; __For your ears only__: 1 EUR per attended person of the donated money will be transferred to the Förderverein (the current treasurer is Ingo, leave the money on his desk with a short note stating the number of people and what kind of a tour this was), the rest is for the guide! There will be a contact phone-number available, best would be to call the contacts-person before the tour to tell them these infos...&lt;br /&gt;
* '''Observing with our telescopes''' is possible, of course, but only in case of '''night and cloudless weather'''! No kidding, some people are not aware of these facts... &amp;lt;br&amp;gt; (&amp;quot;The day is too bright to see stars.&amp;quot;, &amp;quot;I'm sorry, we can't look trough the clouds.&amp;quot;, &amp;quot;The weather forecast is too uncertain, we can't promise.&amp;quot;) Please check if someone else has already signed in for one of the telescopes on the day/night of the guided tour!&lt;br /&gt;
* If all the above points are clarified '''mark the tour''' &amp;lt;br&amp;gt; in our [https://www.sternwarte.uni-erlangen.de/calendar/ online calendar] and the whiteboard in the copying machine office. You have to be at a machine at the observatory to have access to the online calendar (to be more precisely: you're machine has to have an internal IP-address). &amp;lt;br&amp;gt; The entry into the online calendar, besides the date and time, should include &amp;quot;for whom is the tour and the group size, contact person and phone number, name of the guide giving the tour&amp;quot;. &amp;lt;br&amp;gt; The whiteboard template is as follows: &amp;quot;date, for whom is the tour, time, guide&amp;quot;&lt;br /&gt;
&lt;br /&gt;
= Giving a tour =&lt;br /&gt;
&lt;br /&gt;
Each tour has several stations, where you can show things or talk to the people. Useful information and experiences about that is listed below. It might be helpful as well to read the article about [[intern:popular_science:start|popular science]] in case you want or have to (if somebody asks) explain scientific aspects.&lt;br /&gt;
&lt;br /&gt;
== Preparation ==&lt;br /&gt;
&lt;br /&gt;
'''Before the tour'''&lt;br /&gt;
* Shut the doors of all offices in the main building (at least on the ground level) for several reasons: people are not allowed to walk in there and some of us are still working there during tours!&lt;br /&gt;
* Remove the northern hemisphere from the model of the inner solar system located in the entrance hall (you may put it into the Knigge room)&lt;br /&gt;
* Switch the lights on you need:&lt;br /&gt;
** entrance hall&lt;br /&gt;
** meteorite showcase (switch is on the right next to it)&lt;br /&gt;
** hallway to the meridian building; here are multiple switches&lt;br /&gt;
*** main light: right next to the door of the hallway or the backdoor of the main building (labeled &amp;quot;Meridian&amp;quot;)&lt;br /&gt;
*** info panels: on the opposite wall to the door next to the blue cupboard&lt;br /&gt;
*** showcases and Blinkkomparator: in the cutout box up the few stairs on the right wall close to the library, labeled &amp;quot;Linke Steckdosen&amp;quot;&lt;br /&gt;
* In case of observations&lt;br /&gt;
** carry the needed oculars into the domes (for observations with the naked eye, the 40cm telescope is strongly recommended)&lt;br /&gt;
** do __not__ open the domes (first, it might start raining while nobody is there, and it's more fun for you to let the people do it)&lt;br /&gt;
** do __not__ remove the dust covers of the telescopes (wait until the dome has been opened)&lt;br /&gt;
** read the [[remeis:start|guide how to operate the telescopes and mountings]]&lt;br /&gt;
* In case of showing nice pictures&lt;br /&gt;
** make sure enough chairs are available&lt;br /&gt;
** switch on the beamer in the library, log into the machine and start your presentation, picture-viewer, ...&lt;br /&gt;
 &lt;br /&gt;
'''After the tour'''&lt;br /&gt;
* Switch the lights off&lt;br /&gt;
* Shut down the telescope mounting, put the dust covers back on and close the domes&lt;br /&gt;
* Logout of the used machines and switch the beamer off&lt;br /&gt;
* Put on the dust covers of the telescopes in the hallway&lt;br /&gt;
* Protect the photo plates on the Blinkkomparator from getting dusty&lt;br /&gt;
* '''Move the entry from the whiteboard''' in the copying machine office '''to the list attached to the pin-board''' next to it&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Material and Presentations ==&lt;br /&gt;
*Collected information valuable for guided tours: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours'' and ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/guidedtour.pdf''&lt;br /&gt;
&lt;br /&gt;
*A merger of (picture/video) presentations given at guided tours: &amp;lt;br&amp;gt; ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/guidedtour.odp'' &lt;br /&gt;
&lt;br /&gt;
*and according videos in  &amp;lt;br&amp;gt; ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/videos/''&lt;br /&gt;
&lt;br /&gt;
*Research and activities at Remeis from the radio to the gamma-rays (Tobi Beuchert): &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Andrea_tour_material/observations_allwavelength_remeisresearch_beuchert.pdf''&lt;br /&gt;
&lt;br /&gt;
*A presentation showing the astrophotography done at the observatory: &amp;lt;br&amp;gt; ''/data/media/slideshow_astrophotographie/optische_Quellen.pdf''&lt;br /&gt;
&lt;br /&gt;
*A video tour with Joern: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Joerns_example_tour''&lt;br /&gt;
&lt;br /&gt;
*A video tour with Uli (only hallway): &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Ulis_example_tour_hall_2019''&lt;br /&gt;
&lt;br /&gt;
*A complete tour by Sebastian Müller: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Sebastians_example_tour''&lt;br /&gt;
&lt;br /&gt;
*Presentations for tours by Andrea Gokus: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Andrea_tour_material'' &amp;lt;br&amp;gt; Contains presentations about the solar system (solar_system.pdf), neutrinos (neutrino_talk.pdf), overview of different objet types (impressions_universe.pdf)&lt;br /&gt;
&lt;br /&gt;
*Andreas tour notes: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Andrea_tour_material/Sternwarten_Fuehrungsnotizen.pdf''&lt;br /&gt;
&lt;br /&gt;
*Amys tour notes: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Guided_Tour_Information_Amy.pdf''&lt;br /&gt;
&lt;br /&gt;
*Tobis tour notes: &amp;lt;br&amp;gt; ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/guidedtour.pdf''&lt;br /&gt;
&lt;br /&gt;
*Information on clocks: &amp;lt;br&amp;gt; ''/data/media/history/2009-01_KlassikUhren_Poehlmann_Max_Ort.pdf''&lt;br /&gt;
&lt;br /&gt;
*Information on history of the observatory and the collection: &amp;lt;br&amp;gt; ''/data/media/history/AstronomischeSammlung.pdf''&lt;br /&gt;
&lt;br /&gt;
*History of the observatory (Litten): &amp;lt;br&amp;gt; ''/data/media/history/Litten-1.pdf'' &amp;lt;br&amp;gt; ''/data/media/history/Litten-2.pdf''&lt;br /&gt;
&lt;br /&gt;
*Last will of Dr. Karl Remeis: &amp;lt;br&amp;gt; ''/data/media/history/Testament_Karl_Remeis.pdf''&lt;br /&gt;
&lt;br /&gt;
*Die Remeis-Sternwarte zu Bamberg 1889-1939, E. Zinner: &amp;lt;br&amp;gt; [https://articles.adsabs.harvard.edu/cgi-bin/nph-iarticle_query?1939VeBam...4....1Z&amp;amp;amp;data_type=PDF_HIGH&amp;amp;amp;whole_paper=YES&amp;amp;amp;type=PRINTER&amp;amp;amp;filetype=.pdf ADS]&lt;br /&gt;
&lt;br /&gt;
== Picture presentation ==&lt;br /&gt;
&lt;br /&gt;
There are different modes for the beamer (e.g. presentation, videos, graphics etc.) which result in a different appearance of the images. Make sure to select a presentation mode in which the pictures appear in an appropriate brightness on the screen. (I think &amp;quot;graphics&amp;quot; was a good one).&lt;br /&gt;
&lt;br /&gt;
== Telescopes in the domes ==&lt;br /&gt;
It's nice to show the main mirror to the people so that they can see themselves. To do so, just turn down the telescope in declination. This is only possible for the 40cm as the 50cm-Mount has a mechanical stop.&lt;br /&gt;
&lt;br /&gt;
Sometimes people want to know what we do with the tiny, little telescopes attached on the side of the big ones. Those are guiding-scopes. You can attach a camera to them and let it take pictures of one star. If the star moves (what it shouldn't do) a correction signal is sent to the mount to compensate the movement of the star. Stars can &amp;quot;move&amp;quot; in an image for example due to impreciseness of the mount. &lt;br /&gt;
&lt;br /&gt;
The (dusty) plate in front of the 40cm mirror is called &amp;quot;Schmid-Platte&amp;quot;. It is used to improve the imaging of the telescope and to correct several errors of the mirrors like coma and field-curvature. As it is very sensitive to scratching, it won't be cleaned and left dusty. But the dust has hardly any effect on the images as it lays far outside of the focusplane. The optical design is similar to a Ritchey-Chrétien type regarding the capability, but has a spherical main mirror, an aspherical secondary mirror and a lens-corrector (=Schmidt-plate). The price of the telescope and the mount is roughly about 25.000€ altogether.&lt;br /&gt;
&lt;br /&gt;
The 50cm doesn't have a Schmid-Platte but a corrector (lenses) placed in the OAZ. It has an elliptical main mirror and a spherical secondary mirror (Corrected Dall Kirkham). The price of the telescope and the mount is roughly about 65.000€. The secondary mirror is, compared to the size of the main mirror, significantly larger than the 40cm-sec. mirror. This results in a better luminosity an a larger, flat-field which is important for taking images. We can achieve tracking accuracies of about 10min without guiding.&lt;br /&gt;
&lt;br /&gt;
== Monthly public tours ==&lt;br /&gt;
NOTE: even if there is already someone listed for a tour, please enter you availability&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Date &lt;br /&gt;
! Language&lt;br /&gt;
! Time&lt;br /&gt;
! Type&lt;br /&gt;
! Available Guides&lt;br /&gt;
! Backup&lt;br /&gt;
|- &lt;br /&gt;
| 2023/08/01 &lt;br /&gt;
| English&lt;br /&gt;
| 9 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| Philipp T.&lt;br /&gt;
| Aafia&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/08/15 &lt;br /&gt;
| German&lt;br /&gt;
| 6 pm  &lt;br /&gt;
| Tour for children &lt;br /&gt;
| Steven&lt;br /&gt;
| &lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/08/29&lt;br /&gt;
| German&lt;br /&gt;
| 8 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| Christian R.&lt;br /&gt;
| Steven, Philipp T.&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/09/..&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| no tour&lt;br /&gt;
| summer break&lt;br /&gt;
| -&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 2023/10/10 &lt;br /&gt;
| English&lt;br /&gt;
| 7 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| Paavai &lt;br /&gt;
| Steven&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/10/18 &lt;br /&gt;
| German&lt;br /&gt;
| 6 pm &lt;br /&gt;
| Tour for children &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/10/24&lt;br /&gt;
| German&lt;br /&gt;
| 6:30 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| Philipp T.&lt;br /&gt;
| Steven&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Tours looking for a guide ==&lt;br /&gt;
ATTENTION: tours are not sorted by the date of the tour, but the time when they were requested&lt;br /&gt;
&lt;br /&gt;
NOTE: please enter you availability even if there is already another name listed.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Date &lt;br /&gt;
! Language&lt;br /&gt;
! Time&lt;br /&gt;
! Organizer &lt;br /&gt;
! Additional information &lt;br /&gt;
! # People&lt;br /&gt;
! Observing&lt;br /&gt;
! Available Guides&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/10/17&lt;br /&gt;
| German&lt;br /&gt;
| evening&lt;br /&gt;
| Gymnasium Eckental&lt;br /&gt;
| School class 5th grade&lt;br /&gt;
| 26 children + 2 adults&lt;br /&gt;
| yes&lt;br /&gt;
| (add names here)&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/11/22&lt;br /&gt;
| German&lt;br /&gt;
| 11 am&lt;br /&gt;
| Oberlandesgericht Bamberg&lt;br /&gt;
| Children age 6-11&lt;br /&gt;
| 25 children + 3-4 adults&lt;br /&gt;
| no&lt;br /&gt;
| (add names here)&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Observing ==&lt;br /&gt;
&lt;br /&gt;
[[Category:Internal]]&lt;/div&gt;</summary>
		<author><name>Thalhammer</name></author>
	</entry>
	<entry>
		<id>https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Guided_Tours_and_Public_Outreach&amp;diff=2909</id>
		<title>Guided Tours and Public Outreach</title>
		<link rel="alternate" type="text/html" href="https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Guided_Tours_and_Public_Outreach&amp;diff=2909"/>
		<updated>2023-07-26T15:29:50Z</updated>

		<summary type="html">&lt;p&gt;Thalhammer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;On this pages you can find all information needed to guide a tour through our observatory for public people.&lt;br /&gt;
&lt;br /&gt;
At least, that's the aim of this page, so please add information if you think its missing!&lt;br /&gt;
&lt;br /&gt;
= Platform =&lt;br /&gt;
&lt;br /&gt;
'''The following is important:'''&amp;lt;br&amp;gt;&lt;br /&gt;
Tours are officially '''organized''' by the [http://foerderverein-sternwarte-bamberg.de Foerderverein of the observatory], but '''operated''' by the observatory staff to be insured through the university!&lt;br /&gt;
&lt;br /&gt;
The main platform for the general public is&amp;lt;br&amp;gt;[http://foerderverein-sternwarte-bamberg.de/fuehrungen http://foerderverein-sternwarte-bamberg.de/fuehrungen].&lt;br /&gt;
&lt;br /&gt;
Here, tours can be ordered in two different ways:&lt;br /&gt;
* single persons and smaller groups can directly book public and regular guided tours via our webform at&amp;lt;br&amp;gt;https://www.sternwarte.uni-erlangen.de/guided-tours/&lt;br /&gt;
* larger groups may directly ask for a tour at a separate date either by email to&amp;lt;br&amp;gt;[mailto:fuehrungen@foerderverein-sternwarte-bamberg.de fuehrungen@foerderverein-sternwarte-bamberg.de]&amp;lt;br&amp;gt;or by phone. The email address is a forwarding to a certain person of the mailing list (see below).&lt;br /&gt;
&lt;br /&gt;
The source code of the webform for booking a public tour can be found in the GIT repository at&amp;lt;br&amp;gt;&lt;br /&gt;
[https://www.sternwarte.uni-erlangen.de/gitlab/webmaster/guided-tours https://www.sternwarte.uni-erlangen.de/gitlab/webmaster/guided-tours].&amp;lt;br&amp;gt;&lt;br /&gt;
All pushes to the master branch are automatically deployed at the official URL above!&lt;br /&gt;
&lt;br /&gt;
== Mailing List / Current &amp;quot;staff&amp;quot; ==&lt;br /&gt;
&lt;br /&gt;
All people interested in giving guided tours are member of the mailing list&amp;lt;br&amp;gt;&lt;br /&gt;
[mailto:astro-fuehrungen@lists.fau.de astro-fuehrungen@lists.fau.de]&amp;lt;br&amp;gt;&lt;br /&gt;
Please '''do not share''' this address with anybody outside of the observatory!&lt;br /&gt;
If you're not on the list but interested in giving tours, just ask Max to add you :-)&lt;br /&gt;
&lt;br /&gt;
New tours without a guide yet are usually announced via this list. See [[Mailing lists]] for the list administrator.&lt;br /&gt;
&lt;br /&gt;
In charge of organization:&lt;br /&gt;
* Katrin&lt;br /&gt;
&lt;br /&gt;
Currently, the following people give tours on a regular basis:&lt;br /&gt;
* Dominic &lt;br /&gt;
* Ole&lt;br /&gt;
* Steven&lt;br /&gt;
* Christian&lt;br /&gt;
* Aafia&lt;br /&gt;
* Amy&lt;br /&gt;
* Julia&lt;br /&gt;
* Philipp T.&lt;br /&gt;
&lt;br /&gt;
= Tip policy =&lt;br /&gt;
&lt;br /&gt;
The group is informed beforehand about the rule of tip. &lt;br /&gt;
For the guides the following applies for the money you get during the tour:&lt;br /&gt;
During the week (Monday till Friday) the factor for the donation, which goes directly to the Foerderverein, is 1/3 (33%), the rest (2/3) is your personal tip.&lt;br /&gt;
For weekend tours (Saturday, Sunday) the factor for the donation is 1/4 (25%).&lt;br /&gt;
&lt;br /&gt;
Make sure to hand in the donations immediately after your tour. Put the money on Ingos desk with a note stating which tour you gave, how much you received and how many people were there.&lt;br /&gt;
&lt;br /&gt;
= Offering Tours =&lt;br /&gt;
&lt;br /&gt;
At some point you're perhaps asked to give a tour or if it is possible to have one on a specific date. The latter might occur if Edith is out of her office and her telephone is redirected. In those cases you should know ''and'' check following things:&lt;br /&gt;
* '''Who is asking''' for a tour? &amp;lt;br&amp;gt; If you're on the phone ask for a name and write down the phone number where the person can be called!&lt;br /&gt;
* The '''number of people should be between 15 and 25'''. &amp;lt;br&amp;gt; Of course, the boundary conditions depend on the person guiding the tour. In a case of doubt, ask the guide or, if none is found yet, you simply can't promise that there will be a tour! In that case you may offer to look for a guide giving the tour anyway (and call the person back), but again don't make any promises! A list of people offering tours can be found below.&lt;br /&gt;
* What is the '''average age of the persons attending''' the tour? &amp;lt;br&amp;gt; That's an important point since the content of a tour differs between children and adults, of course. Furthermore some guides have favorite age groups!&lt;br /&gt;
* Carefully check the '''date and time of the tour'''!&lt;br /&gt;
** It's most likely to find a guide if the weekday of a tour is '''between Monday and Thursday'''. Friday might work if it is before noon, otherwise people might be on the way into the weekend. In all other cases you may offer to look for a guide giving the tour anyway (see the point about the group size above).&lt;br /&gt;
** Make sure that there is '''no tour scheduled already'''! For that look into our online calendar (the link can be found below) and on the whiteboard in the copying machine office.&lt;br /&gt;
** Related to the last point ensure that there is '''no lab course''' running at the date! The lab course is also marked in our online calendar.&lt;br /&gt;
** Usually, a tour will take '''about 1.5 to 2 hours'''.&lt;br /&gt;
* Clarify the '''costs for a tour''' beforehand!! &amp;lt;br&amp;gt; Unfortunately, we are '''not allowed to ask for money''' for giving a tour! The only way for getting money is to tell the people that they are welcomed to '''donate money to the [http://foerderverein-sternwarte-bamberg.de/| Foerderverein der Sternwarte]'''. In nearly every case the people or the one asking for a tour will pay something. A rule of thumb is that '''every person donates 3 EUR''' (for children 2 EUR are alright as well). &amp;lt;br&amp;gt; __For your ears only__: 1 EUR per attended person of the donated money will be transferred to the Förderverein (the current treasurer is Ingo, leave the money on his desk with a short note stating the number of people and what kind of a tour this was), the rest is for the guide! There will be a contact phone-number available, best would be to call the contacts-person before the tour to tell them these infos...&lt;br /&gt;
* '''Observing with our telescopes''' is possible, of course, but only in case of '''night and cloudless weather'''! No kidding, some people are not aware of these facts... &amp;lt;br&amp;gt; (&amp;quot;The day is too bright to see stars.&amp;quot;, &amp;quot;I'm sorry, we can't look trough the clouds.&amp;quot;, &amp;quot;The weather forecast is too uncertain, we can't promise.&amp;quot;) Please check if someone else has already signed in for one of the telescopes on the day/night of the guided tour!&lt;br /&gt;
* If all the above points are clarified '''mark the tour''' &amp;lt;br&amp;gt; in our [https://www.sternwarte.uni-erlangen.de/calendar/ online calendar] and the whiteboard in the copying machine office. You have to be at a machine at the observatory to have access to the online calendar (to be more precisely: you're machine has to have an internal IP-address). &amp;lt;br&amp;gt; The entry into the online calendar, besides the date and time, should include &amp;quot;for whom is the tour and the group size, contact person and phone number, name of the guide giving the tour&amp;quot;. &amp;lt;br&amp;gt; The whiteboard template is as follows: &amp;quot;date, for whom is the tour, time, guide&amp;quot;&lt;br /&gt;
&lt;br /&gt;
= Giving a tour =&lt;br /&gt;
&lt;br /&gt;
Each tour has several stations, where you can show things or talk to the people. Useful information and experiences about that is listed below. It might be helpful as well to read the article about [[intern:popular_science:start|popular science]] in case you want or have to (if somebody asks) explain scientific aspects.&lt;br /&gt;
&lt;br /&gt;
== Preparation ==&lt;br /&gt;
&lt;br /&gt;
'''Before the tour'''&lt;br /&gt;
* Shut the doors of all offices in the main building (at least on the ground level) for several reasons: people are not allowed to walk in there and some of us are still working there during tours!&lt;br /&gt;
* Remove the northern hemisphere from the model of the inner solar system located in the entrance hall (you may put it into the Knigge room)&lt;br /&gt;
* Switch the lights on you need:&lt;br /&gt;
** entrance hall&lt;br /&gt;
** meteorite showcase (switch is on the right next to it)&lt;br /&gt;
** hallway to the meridian building; here are multiple switches&lt;br /&gt;
*** main light: right next to the door of the hallway or the backdoor of the main building (labeled &amp;quot;Meridian&amp;quot;)&lt;br /&gt;
*** info panels: on the opposite wall to the door next to the blue cupboard&lt;br /&gt;
*** showcases and Blinkkomparator: in the cutout box up the few stairs on the right wall close to the library, labeled &amp;quot;Linke Steckdosen&amp;quot;&lt;br /&gt;
* In case of observations&lt;br /&gt;
** carry the needed oculars into the domes (for observations with the naked eye, the 40cm telescope is strongly recommended)&lt;br /&gt;
** do __not__ open the domes (first, it might start raining while nobody is there, and it's more fun for you to let the people do it)&lt;br /&gt;
** do __not__ remove the dust covers of the telescopes (wait until the dome has been opened)&lt;br /&gt;
** read the [[remeis:start|guide how to operate the telescopes and mountings]]&lt;br /&gt;
* In case of showing nice pictures&lt;br /&gt;
** make sure enough chairs are available&lt;br /&gt;
** switch on the beamer in the library, log into the machine and start your presentation, picture-viewer, ...&lt;br /&gt;
 &lt;br /&gt;
'''After the tour'''&lt;br /&gt;
* Switch the lights off&lt;br /&gt;
* Shut down the telescope mounting, put the dust covers back on and close the domes&lt;br /&gt;
* Logout of the used machines and switch the beamer off&lt;br /&gt;
* Put on the dust covers of the telescopes in the hallway&lt;br /&gt;
* Protect the photo plates on the Blinkkomparator from getting dusty&lt;br /&gt;
* '''Move the entry from the whiteboard''' in the copying machine office '''to the list attached to the pin-board''' next to it&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Material and Presentations ==&lt;br /&gt;
*Collected information valuable for guided tours: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours'' and ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/guidedtour.pdf''&lt;br /&gt;
&lt;br /&gt;
*A merger of (picture/video) presentations given at guided tours: &amp;lt;br&amp;gt; ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/guidedtour.odp'' &lt;br /&gt;
&lt;br /&gt;
*and according videos in  &amp;lt;br&amp;gt; ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/videos/''&lt;br /&gt;
&lt;br /&gt;
*Research and activities at Remeis from the radio to the gamma-rays (Tobi Beuchert): &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Andrea_tour_material/observations_allwavelength_remeisresearch_beuchert.pdf''&lt;br /&gt;
&lt;br /&gt;
*A presentation showing the astrophotography done at the observatory: &amp;lt;br&amp;gt; ''/data/media/slideshow_astrophotographie/optische_Quellen.pdf''&lt;br /&gt;
&lt;br /&gt;
*A video tour with Joern: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Joerns_example_tour''&lt;br /&gt;
&lt;br /&gt;
*A video tour with Uli (only hallway): &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Ulis_example_tour_hall_2019''&lt;br /&gt;
&lt;br /&gt;
*A complete tour by Sebastian Müller: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Sebastians_example_tour''&lt;br /&gt;
&lt;br /&gt;
*Presentations for tours by Andrea Gokus: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Andrea_tour_material'' &amp;lt;br&amp;gt; Contains presentations about the solar system (solar_system.pdf), neutrinos (neutrino_talk.pdf), overview of different objet types (impressions_universe.pdf)&lt;br /&gt;
&lt;br /&gt;
*Andreas tour notes: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Andrea_tour_material/Sternwarten_Fuehrungsnotizen.pdf''&lt;br /&gt;
&lt;br /&gt;
*Amys tour notes: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Guided_Tour_Information_Amy.pdf''&lt;br /&gt;
&lt;br /&gt;
*Tobis tour notes: &amp;lt;br&amp;gt; ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/guidedtour.pdf''&lt;br /&gt;
&lt;br /&gt;
*Information on clocks: &amp;lt;br&amp;gt; ''/data/media/history/2009-01_KlassikUhren_Poehlmann_Max_Ort.pdf''&lt;br /&gt;
&lt;br /&gt;
*Information on history of the observatory and the collection: &amp;lt;br&amp;gt; ''/data/media/history/AstronomischeSammlung.pdf''&lt;br /&gt;
&lt;br /&gt;
*History of the observatory (Litten): &amp;lt;br&amp;gt; ''/data/media/history/Litten-1.pdf'' &amp;lt;br&amp;gt; ''/data/media/history/Litten-2.pdf''&lt;br /&gt;
&lt;br /&gt;
*Last will of Dr. Karl Remeis: &amp;lt;br&amp;gt; ''/data/media/history/Testament_Karl_Remeis.pdf''&lt;br /&gt;
&lt;br /&gt;
*Die Remeis-Sternwarte zu Bamberg 1889-1939, E. Zinner: &amp;lt;br&amp;gt; [https://articles.adsabs.harvard.edu/cgi-bin/nph-iarticle_query?1939VeBam...4....1Z&amp;amp;amp;data_type=PDF_HIGH&amp;amp;amp;whole_paper=YES&amp;amp;amp;type=PRINTER&amp;amp;amp;filetype=.pdf ADS]&lt;br /&gt;
&lt;br /&gt;
== Picture presentation ==&lt;br /&gt;
&lt;br /&gt;
There are different modes for the beamer (e.g. presentation, videos, graphics etc.) which result in a different appearance of the images. Make sure to select a presentation mode in which the pictures appear in an appropriate brightness on the screen. (I think &amp;quot;graphics&amp;quot; was a good one).&lt;br /&gt;
&lt;br /&gt;
== Telescopes in the domes ==&lt;br /&gt;
It's nice to show the main mirror to the people so that they can see themselves. To do so, just turn down the telescope in declination. This is only possible for the 40cm as the 50cm-Mount has a mechanical stop.&lt;br /&gt;
&lt;br /&gt;
Sometimes people want to know what we do with the tiny, little telescopes attached on the side of the big ones. Those are guiding-scopes. You can attach a camera to them and let it take pictures of one star. If the star moves (what it shouldn't do) a correction signal is sent to the mount to compensate the movement of the star. Stars can &amp;quot;move&amp;quot; in an image for example due to impreciseness of the mount. &lt;br /&gt;
&lt;br /&gt;
The (dusty) plate in front of the 40cm mirror is called &amp;quot;Schmid-Platte&amp;quot;. It is used to improve the imaging of the telescope and to correct several errors of the mirrors like coma and field-curvature. As it is very sensitive to scratching, it won't be cleaned and left dusty. But the dust has hardly any effect on the images as it lays far outside of the focusplane. The optical design is similar to a Ritchey-Chrétien type regarding the capability, but has a spherical main mirror, an aspherical secondary mirror and a lens-corrector (=Schmidt-plate). The price of the telescope and the mount is roughly about 25.000€ altogether.&lt;br /&gt;
&lt;br /&gt;
The 50cm doesn't have a Schmid-Platte but a corrector (lenses) placed in the OAZ. It has an elliptical main mirror and a spherical secondary mirror (Corrected Dall Kirkham). The price of the telescope and the mount is roughly about 65.000€. The secondary mirror is, compared to the size of the main mirror, significantly larger than the 40cm-sec. mirror. This results in a better luminosity an a larger, flat-field which is important for taking images. We can achieve tracking accuracies of about 10min without guiding.&lt;br /&gt;
&lt;br /&gt;
== Monthly public tours ==&lt;br /&gt;
NOTE: even if there is already someone listed for a tour, please enter you availability&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Date &lt;br /&gt;
! Language&lt;br /&gt;
! Time&lt;br /&gt;
! Type&lt;br /&gt;
! Available Guides&lt;br /&gt;
! Backup&lt;br /&gt;
|- &lt;br /&gt;
| 2023/08/01 &lt;br /&gt;
| English&lt;br /&gt;
| 9 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| Philipp T.&lt;br /&gt;
| Aafia&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/08/15 &lt;br /&gt;
| German&lt;br /&gt;
| 6 pm  &lt;br /&gt;
| Tour for children &lt;br /&gt;
| Steven&lt;br /&gt;
| &lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/08/29&lt;br /&gt;
| German&lt;br /&gt;
| 8 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| &lt;br /&gt;
| Steven, Philipp T.&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/09/..&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| no tour&lt;br /&gt;
| summer break&lt;br /&gt;
| -&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 2023/10/10 &lt;br /&gt;
| English&lt;br /&gt;
| 7 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| Paavai &lt;br /&gt;
| Steven&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/10/18 &lt;br /&gt;
| German&lt;br /&gt;
| 6 pm &lt;br /&gt;
| Tour for children &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/10/24&lt;br /&gt;
| German&lt;br /&gt;
| 6:30 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
|&lt;br /&gt;
| Steven&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Tours looking for a guide ==&lt;br /&gt;
ATTENTION: tours are not sorted by the date of the tour, but the time when they were requested&lt;br /&gt;
&lt;br /&gt;
NOTE: please enter you availability even if there is already another name listed.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Date &lt;br /&gt;
! Language&lt;br /&gt;
! Time&lt;br /&gt;
! Organizer &lt;br /&gt;
! Additional information &lt;br /&gt;
! # People&lt;br /&gt;
! Observing&lt;br /&gt;
! Available Guides&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/10/17&lt;br /&gt;
| German&lt;br /&gt;
| evening&lt;br /&gt;
| Gymnasium Eckental&lt;br /&gt;
| School class 5th grade&lt;br /&gt;
| 26 children + 2 adults&lt;br /&gt;
| yes&lt;br /&gt;
| (add names here)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Observing ==&lt;br /&gt;
&lt;br /&gt;
[[Category:Internal]]&lt;/div&gt;</summary>
		<author><name>Thalhammer</name></author>
	</entry>
	<entry>
		<id>https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Guided_Tours_and_Public_Outreach&amp;diff=2902</id>
		<title>Guided Tours and Public Outreach</title>
		<link rel="alternate" type="text/html" href="https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Guided_Tours_and_Public_Outreach&amp;diff=2902"/>
		<updated>2023-07-25T12:42:48Z</updated>

		<summary type="html">&lt;p&gt;Thalhammer: /* Monthly public tours */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;On this pages you can find all information needed to guide a tour through our observatory for public people.&lt;br /&gt;
&lt;br /&gt;
At least, that's the aim of this page, so please add information if you think its missing!&lt;br /&gt;
&lt;br /&gt;
= Platform =&lt;br /&gt;
&lt;br /&gt;
'''The following is important:'''&amp;lt;br&amp;gt;&lt;br /&gt;
Tours are officially '''organized''' by the [http://foerderverein-sternwarte-bamberg.de Foerderverein of the observatory], but '''operated''' by the observatory staff to be insured through the university!&lt;br /&gt;
&lt;br /&gt;
The main platform for the general public is&amp;lt;br&amp;gt;[http://foerderverein-sternwarte-bamberg.de/fuehrungen http://foerderverein-sternwarte-bamberg.de/fuehrungen].&lt;br /&gt;
&lt;br /&gt;
Here, tours can be ordered in two different ways:&lt;br /&gt;
* single persons and smaller groups can directly book public and regular guided tours via our webform at&amp;lt;br&amp;gt;https://www.sternwarte.uni-erlangen.de/guided-tours/&lt;br /&gt;
* larger groups may directly ask for a tour at a separate date either by email to&amp;lt;br&amp;gt;[mailto:fuehrungen@foerderverein-sternwarte-bamberg.de fuehrungen@foerderverein-sternwarte-bamberg.de]&amp;lt;br&amp;gt;or by phone. The email address is a forwarding to a certain person of the mailing list (see below).&lt;br /&gt;
&lt;br /&gt;
The source code of the webform for booking a public tour can be found in the GIT repository at&amp;lt;br&amp;gt;&lt;br /&gt;
[https://www.sternwarte.uni-erlangen.de/gitlab/webmaster/guided-tours https://www.sternwarte.uni-erlangen.de/gitlab/webmaster/guided-tours].&amp;lt;br&amp;gt;&lt;br /&gt;
All pushes to the master branch are automatically deployed at the official URL above!&lt;br /&gt;
&lt;br /&gt;
== Mailing List / Current &amp;quot;staff&amp;quot; ==&lt;br /&gt;
&lt;br /&gt;
All people interested in giving guided tours are member of the mailing list&amp;lt;br&amp;gt;&lt;br /&gt;
[mailto:astro-fuehrungen@lists.fau.de astro-fuehrungen@lists.fau.de]&amp;lt;br&amp;gt;&lt;br /&gt;
Please '''do not share''' this address with anybody outside of the observatory!&lt;br /&gt;
If you're not on the list but interested in giving tours, just ask Max to add you :-)&lt;br /&gt;
&lt;br /&gt;
New tours without a guide yet are usually announced via this list. See [[Mailing lists]] for the list administrator.&lt;br /&gt;
&lt;br /&gt;
In charge of organization:&lt;br /&gt;
* Katrin&lt;br /&gt;
&lt;br /&gt;
Currently, the following people give tours on a regular basis:&lt;br /&gt;
* Dominic &lt;br /&gt;
* Ole&lt;br /&gt;
* Steven&lt;br /&gt;
* Christian&lt;br /&gt;
* Aafia&lt;br /&gt;
* Amy&lt;br /&gt;
* Julia&lt;br /&gt;
* Philipp T.&lt;br /&gt;
&lt;br /&gt;
= Tip policy =&lt;br /&gt;
&lt;br /&gt;
The group is informed beforehand about the rule of tip. &lt;br /&gt;
For the guides the following applies for the money you get during the tour:&lt;br /&gt;
During the week (Monday till Friday) the factor for the donation, which goes directly to the Foerderverein, is 1/3 (33%), the rest (2/3) is your personal tip.&lt;br /&gt;
For weekend tours (Saturday, Sunday) the factor for the donation is 1/4 (25%).&lt;br /&gt;
&lt;br /&gt;
Make sure to hand in the donations immediately after your tour. Put the money on Ingos desk with a note stating which tour you gave, how much you received and how many people were there.&lt;br /&gt;
&lt;br /&gt;
= Offering Tours =&lt;br /&gt;
&lt;br /&gt;
At some point you're perhaps asked to give a tour or if it is possible to have one on a specific date. The latter might occur if Edith is out of her office and her telephone is redirected. In those cases you should know ''and'' check following things:&lt;br /&gt;
* '''Who is asking''' for a tour? &amp;lt;br&amp;gt; If you're on the phone ask for a name and write down the phone number where the person can be called!&lt;br /&gt;
* The '''number of people should be between 15 and 25'''. &amp;lt;br&amp;gt; Of course, the boundary conditions depend on the person guiding the tour. In a case of doubt, ask the guide or, if none is found yet, you simply can't promise that there will be a tour! In that case you may offer to look for a guide giving the tour anyway (and call the person back), but again don't make any promises! A list of people offering tours can be found below.&lt;br /&gt;
* What is the '''average age of the persons attending''' the tour? &amp;lt;br&amp;gt; That's an important point since the content of a tour differs between children and adults, of course. Furthermore some guides have favorite age groups!&lt;br /&gt;
* Carefully check the '''date and time of the tour'''!&lt;br /&gt;
** It's most likely to find a guide if the weekday of a tour is '''between Monday and Thursday'''. Friday might work if it is before noon, otherwise people might be on the way into the weekend. In all other cases you may offer to look for a guide giving the tour anyway (see the point about the group size above).&lt;br /&gt;
** Make sure that there is '''no tour scheduled already'''! For that look into our online calendar (the link can be found below) and on the whiteboard in the copying machine office.&lt;br /&gt;
** Related to the last point ensure that there is '''no lab course''' running at the date! The lab course is also marked in our online calendar.&lt;br /&gt;
** Usually, a tour will take '''about 1.5 to 2 hours'''.&lt;br /&gt;
* Clarify the '''costs for a tour''' beforehand!! &amp;lt;br&amp;gt; Unfortunately, we are '''not allowed to ask for money''' for giving a tour! The only way for getting money is to tell the people that they are welcomed to '''donate money to the [http://foerderverein-sternwarte-bamberg.de/| Foerderverein der Sternwarte]'''. In nearly every case the people or the one asking for a tour will pay something. A rule of thumb is that '''every person donates 3 EUR''' (for children 2 EUR are alright as well). &amp;lt;br&amp;gt; __For your ears only__: 1 EUR per attended person of the donated money will be transferred to the Förderverein (the current treasurer is Ingo, leave the money on his desk with a short note stating the number of people and what kind of a tour this was), the rest is for the guide! There will be a contact phone-number available, best would be to call the contacts-person before the tour to tell them these infos...&lt;br /&gt;
* '''Observing with our telescopes''' is possible, of course, but only in case of '''night and cloudless weather'''! No kidding, some people are not aware of these facts... &amp;lt;br&amp;gt; (&amp;quot;The day is too bright to see stars.&amp;quot;, &amp;quot;I'm sorry, we can't look trough the clouds.&amp;quot;, &amp;quot;The weather forecast is too uncertain, we can't promise.&amp;quot;) Please check if someone else has already signed in for one of the telescopes on the day/night of the guided tour!&lt;br /&gt;
* If all the above points are clarified '''mark the tour''' &amp;lt;br&amp;gt; in our [https://www.sternwarte.uni-erlangen.de/calendar/ online calendar] and the whiteboard in the copying machine office. You have to be at a machine at the observatory to have access to the online calendar (to be more precisely: you're machine has to have an internal IP-address). &amp;lt;br&amp;gt; The entry into the online calendar, besides the date and time, should include &amp;quot;for whom is the tour and the group size, contact person and phone number, name of the guide giving the tour&amp;quot;. &amp;lt;br&amp;gt; The whiteboard template is as follows: &amp;quot;date, for whom is the tour, time, guide&amp;quot;&lt;br /&gt;
&lt;br /&gt;
= Giving a tour =&lt;br /&gt;
&lt;br /&gt;
Each tour has several stations, where you can show things or talk to the people. Useful information and experiences about that is listed below. It might be helpful as well to read the article about [[intern:popular_science:start|popular science]] in case you want or have to (if somebody asks) explain scientific aspects.&lt;br /&gt;
&lt;br /&gt;
== Preparation ==&lt;br /&gt;
&lt;br /&gt;
'''Before the tour'''&lt;br /&gt;
* Shut the doors of all offices in the main building (at least on the ground level) for several reasons: people are not allowed to walk in there and some of us are still working there during tours!&lt;br /&gt;
* Remove the northern hemisphere from the model of the inner solar system located in the entrance hall (you may put it into the Knigge room)&lt;br /&gt;
* Switch the lights on you need:&lt;br /&gt;
** entrance hall&lt;br /&gt;
** meteorite showcase (switch is on the right next to it)&lt;br /&gt;
** hallway to the meridian building; here are multiple switches&lt;br /&gt;
*** main light: right next to the door of the hallway or the backdoor of the main building (labeled &amp;quot;Meridian&amp;quot;)&lt;br /&gt;
*** info panels: on the opposite wall to the door next to the blue cupboard&lt;br /&gt;
*** showcases and Blinkkomparator: in the cutout box up the few stairs on the right wall close to the library, labeled &amp;quot;Linke Steckdosen&amp;quot;&lt;br /&gt;
* In case of observations&lt;br /&gt;
** carry the needed oculars into the domes (for observations with the naked eye, the 40cm telescope is strongly recommended)&lt;br /&gt;
** do __not__ open the domes (first, it might start raining while nobody is there, and it's more fun for you to let the people do it)&lt;br /&gt;
** do __not__ remove the dust covers of the telescopes (wait until the dome has been opened)&lt;br /&gt;
** read the [[remeis:start|guide how to operate the telescopes and mountings]]&lt;br /&gt;
* In case of showing nice pictures&lt;br /&gt;
** make sure enough chairs are available&lt;br /&gt;
** switch on the beamer in the library, log into the machine and start your presentation, picture-viewer, ...&lt;br /&gt;
 &lt;br /&gt;
'''After the tour'''&lt;br /&gt;
* Switch the lights off&lt;br /&gt;
* Shut down the telescope mounting, put the dust covers back on and close the domes&lt;br /&gt;
* Logout of the used machines and switch the beamer off&lt;br /&gt;
* Put on the dust covers of the telescopes in the hallway&lt;br /&gt;
* Protect the photo plates on the Blinkkomparator from getting dusty&lt;br /&gt;
* '''Move the entry from the whiteboard''' in the copying machine office '''to the list attached to the pin-board''' next to it&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Material and Presentations ==&lt;br /&gt;
*Collected information valuable for guided tours: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours'' and ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/guidedtour.pdf''&lt;br /&gt;
&lt;br /&gt;
*A merger of (picture/video) presentations given at guided tours: &amp;lt;br&amp;gt; ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/guidedtour.odp'' &lt;br /&gt;
&lt;br /&gt;
*and according videos in  &amp;lt;br&amp;gt; ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/videos/''&lt;br /&gt;
&lt;br /&gt;
*Research and activities at Remeis from the radio to the gamma-rays (Tobi Beuchert): &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Andrea_tour_material/observations_allwavelength_remeisresearch_beuchert.pdf''&lt;br /&gt;
&lt;br /&gt;
*A presentation showing the astrophotography done at the observatory: &amp;lt;br&amp;gt; ''/data/media/slideshow_astrophotographie/optische_Quellen.pdf''&lt;br /&gt;
&lt;br /&gt;
*A video tour with Joern: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Joerns_example_tour''&lt;br /&gt;
&lt;br /&gt;
*A video tour with Uli (only hallway): &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Ulis_example_tour_hall_2019''&lt;br /&gt;
&lt;br /&gt;
*A complete tour by Sebastian Müller: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Sebastians_example_tour''&lt;br /&gt;
&lt;br /&gt;
*Presentations for tours by Andrea Gokus: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Andrea_tour_material'' &amp;lt;br&amp;gt; Contains presentations about the solar system (solar_system.pdf), neutrinos (neutrino_talk.pdf), overview of different objet types (impressions_universe.pdf)&lt;br /&gt;
&lt;br /&gt;
*Andreas tour notes: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Andrea_tour_material/Sternwarten_Fuehrungsnotizen.pdf''&lt;br /&gt;
&lt;br /&gt;
*Amys tour notes: &amp;lt;br&amp;gt; ''/data/media/presentations_for_guided_tours/Guided_Tour_Information_Amy.pdf''&lt;br /&gt;
&lt;br /&gt;
*Tobis tour notes: &amp;lt;br&amp;gt; ''/userdata/data/beuchert/work/teaching/guidedtour/presentation/guidedtour.pdf''&lt;br /&gt;
&lt;br /&gt;
*Information on clocks: &amp;lt;br&amp;gt; ''/data/media/history/2009-01_KlassikUhren_Poehlmann_Max_Ort.pdf''&lt;br /&gt;
&lt;br /&gt;
*Information on history of the observatory and the collection: &amp;lt;br&amp;gt; ''/data/media/history/AstronomischeSammlung.pdf''&lt;br /&gt;
&lt;br /&gt;
*History of the observatory (Litten): &amp;lt;br&amp;gt; ''/data/media/history/Litten-1.pdf'' &amp;lt;br&amp;gt; ''/data/media/history/Litten-2.pdf''&lt;br /&gt;
&lt;br /&gt;
*Last will of Dr. Karl Remeis: &amp;lt;br&amp;gt; ''/data/media/history/Testament_Karl_Remeis.pdf''&lt;br /&gt;
&lt;br /&gt;
*Die Remeis-Sternwarte zu Bamberg 1889-1939, E. Zinner: &amp;lt;br&amp;gt; [https://articles.adsabs.harvard.edu/cgi-bin/nph-iarticle_query?1939VeBam...4....1Z&amp;amp;amp;data_type=PDF_HIGH&amp;amp;amp;whole_paper=YES&amp;amp;amp;type=PRINTER&amp;amp;amp;filetype=.pdf ADS]&lt;br /&gt;
&lt;br /&gt;
== Picture presentation ==&lt;br /&gt;
&lt;br /&gt;
There are different modes for the beamer (e.g. presentation, videos, graphics etc.) which result in a different appearance of the images. Make sure to select a presentation mode in which the pictures appear in an appropriate brightness on the screen. (I think &amp;quot;graphics&amp;quot; was a good one).&lt;br /&gt;
&lt;br /&gt;
== Telescopes in the domes ==&lt;br /&gt;
It's nice to show the main mirror to the people so that they can see themselves. To do so, just turn down the telescope in declination. This is only possible for the 40cm as the 50cm-Mount has a mechanical stop.&lt;br /&gt;
&lt;br /&gt;
Sometimes people want to know what we do with the tiny, little telescopes attached on the side of the big ones. Those are guiding-scopes. You can attach a camera to them and let it take pictures of one star. If the star moves (what it shouldn't do) a correction signal is sent to the mount to compensate the movement of the star. Stars can &amp;quot;move&amp;quot; in an image for example due to impreciseness of the mount. &lt;br /&gt;
&lt;br /&gt;
The (dusty) plate in front of the 40cm mirror is called &amp;quot;Schmid-Platte&amp;quot;. It is used to improve the imaging of the telescope and to correct several errors of the mirrors like coma and field-curvature. As it is very sensitive to scratching, it won't be cleaned and left dusty. But the dust has hardly any effect on the images as it lays far outside of the focusplane. The optical design is similar to a Ritchey-Chrétien type regarding the capability, but has a spherical main mirror, an aspherical secondary mirror and a lens-corrector (=Schmidt-plate). The price of the telescope and the mount is roughly about 25.000€ altogether.&lt;br /&gt;
&lt;br /&gt;
The 50cm doesn't have a Schmid-Platte but a corrector (lenses) placed in the OAZ. It has an elliptical main mirror and a spherical secondary mirror (Corrected Dall Kirkham). The price of the telescope and the mount is roughly about 65.000€. The secondary mirror is, compared to the size of the main mirror, significantly larger than the 40cm-sec. mirror. This results in a better luminosity an a larger, flat-field which is important for taking images. We can achieve tracking accuracies of about 10min without guiding.&lt;br /&gt;
&lt;br /&gt;
== Monthly public tours ==&lt;br /&gt;
NOTE: even if there is already someone listed for a tour, please enter you availability&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Date &lt;br /&gt;
! Language&lt;br /&gt;
! Time&lt;br /&gt;
! Type&lt;br /&gt;
! Available Guides&lt;br /&gt;
! Backup&lt;br /&gt;
|- &lt;br /&gt;
| 2023/08/01 &lt;br /&gt;
| English&lt;br /&gt;
| 9 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| Philipp T.&lt;br /&gt;
| Aafia&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/08/15 &lt;br /&gt;
| German&lt;br /&gt;
| 6 pm  &lt;br /&gt;
| Tour for children &lt;br /&gt;
| Steven&lt;br /&gt;
| &lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/08/29&lt;br /&gt;
| German&lt;br /&gt;
| 8 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| &lt;br /&gt;
| Steven, Philipp&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/09/..&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| no tour&lt;br /&gt;
| summer break&lt;br /&gt;
| -&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| 2023/10/10 &lt;br /&gt;
| English&lt;br /&gt;
| 7 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
| Paavai &lt;br /&gt;
| Steven&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/10/18 &lt;br /&gt;
| German&lt;br /&gt;
| 6 pm &lt;br /&gt;
| Tour for children &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/10/24&lt;br /&gt;
| German&lt;br /&gt;
| 6:30 pm&lt;br /&gt;
| normal tour&lt;br /&gt;
|&lt;br /&gt;
| Steven&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Tours looking for a guide ==&lt;br /&gt;
ATTENTION: tours are not sorted by the date of the tour, but the time when they were requested&lt;br /&gt;
&lt;br /&gt;
NOTE: please enter you availability even if there is already another name listed.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Date &lt;br /&gt;
! Language&lt;br /&gt;
! Time&lt;br /&gt;
! Organizer &lt;br /&gt;
! Additional information &lt;br /&gt;
! # People&lt;br /&gt;
! Observing&lt;br /&gt;
! Available Guides&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
| 2023/10/17&lt;br /&gt;
| German&lt;br /&gt;
| evening&lt;br /&gt;
| Gymnasium Eckental&lt;br /&gt;
| School class 5th grade&lt;br /&gt;
| 26 children + 2 adults&lt;br /&gt;
| yes&lt;br /&gt;
| (add names here)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Observing ==&lt;br /&gt;
&lt;br /&gt;
[[Category:Internal]]&lt;/div&gt;</summary>
		<author><name>Thalhammer</name></author>
	</entry>
	<entry>
		<id>https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Nustar&amp;diff=2838</id>
		<title>Nustar</title>
		<link rel="alternate" type="text/html" href="https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Nustar&amp;diff=2838"/>
		<updated>2023-06-16T08:56:29Z</updated>

		<summary type="html">&lt;p&gt;Thalhammer: /* Bright sources = */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;====== NuSTAR data extraction ======&lt;br /&gt;
&lt;br /&gt;
'''Preparation:''' This step unpacks the data of both FPM to the specified 'prepdir'. The example observation is of Mrk 335.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/csh&lt;br /&gt;
   &lt;br /&gt;
set revolution = '6'&lt;br /&gt;
set obsid = '60001041005'&lt;br /&gt;
set datadir = /data/X-ray/NuSTAR/data/$revolution/$obsid&lt;br /&gt;
set prepdir = /userdata/data/$user/whereever/you/want&lt;br /&gt;
&lt;br /&gt;
nuprepare --datadir=$datadir --prepdir=$prepdir --all&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Spectrum and Lightcurve Extraction:'''&lt;br /&gt;
Now you can take a look at the raw images in prepdir/reprocessed/nu-obsid-A-or-B-01_cl.evt using ''ds9''. Create a region by clicking at the source and choose a circular region between 50 and 120&amp;lt;nowiki&amp;gt;''&amp;lt;/nowiki&amp;gt; radius centered on the source. You can save the coordinates under Region-&amp;gt;Save Regions... as .reg-file use the default coordinate system.&amp;lt;br /&amp;gt;&lt;br /&gt;
Choose and save another region for the background spectrum that does not contain any sources and make it as large as possible. Be careful that it is still within NuSTAR's FOV.&amp;lt;br /&amp;gt;&lt;br /&gt;
Now we can extract the spectrum using nuextract:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
#!/bin/csh&lt;br /&gt;
   &lt;br /&gt;
set revolution = '6'&lt;br /&gt;
set obsid = '60001041005'&lt;br /&gt;
set prepdir = /userdata/data/$user/whereever/you/want&lt;br /&gt;
&lt;br /&gt;
set name = extraction_a&lt;br /&gt;
set bkg = $prepdir/reprocessed/fpma_bkg.reg&lt;br /&gt;
set src = $prepdir/reprocessed/fpma_src.reg&lt;br /&gt;
&lt;br /&gt;
nuextract --prepdir=$prepdir --name=$name --srcreg=$src --bkgreg=$bkg --fpm='A'&lt;br /&gt;
&lt;br /&gt;
set name = extraction_b&lt;br /&gt;
set bkg = $prepdir/reprocessed/fpmb_bkg.reg&lt;br /&gt;
set src = $prepdir/reprocessed/fpmb_src.reg&lt;br /&gt;
&lt;br /&gt;
nuextract --prepdir=$prepdir --name=$name --srcreg=$src --bkgreg=$bkg --fpm='B'&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For time- or energy-limited extractions take a look at:&lt;br /&gt;
 nuextract --help&lt;br /&gt;
&lt;br /&gt;
===== Version information =====&lt;br /&gt;
&lt;br /&gt;
In order to find out the version of the NuSTARDAS and CALDB your data were extracted with, you can use the following commands:&lt;br /&gt;
&lt;br /&gt;
  fdump &amp;lt;fits_file_of_interest&amp;gt; page=no | grep -i nustardas&lt;br /&gt;
  fdump &amp;lt;fits_file_of_interest&amp;gt; page=no | grep -i caldb&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== Known Issues =====&lt;br /&gt;
&lt;br /&gt;
* Very long file and directory names can cause crashes in nuextract. The path $name has to be a relative path, otherwise nuextract crashes.&lt;br /&gt;
&lt;br /&gt;
===== Bright sources =====&lt;br /&gt;
&lt;br /&gt;
* For sources with count-rates exceeding ~100 counts per second it is advised to use the the additional nuprepare flag --statusexpr=&amp;quot;(STATUS==b0000xxx00xxxx000)&amp;amp;&amp;amp;(SHIELD==0)&amp;quot;. &lt;br /&gt;
* For timing analysis of the power spectrum the SHIELD==0 term should be removed as this does introduce energy dependent timing features. &lt;br /&gt;
* Check the NuSTAR FAQ on bright sources for more information: https://heasarc.gsfc.nasa.gov/docs/nustar/nustar_faq.html#bright. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Data Extraction]]&lt;/div&gt;</summary>
		<author><name>Thalhammer</name></author>
	</entry>
	<entry>
		<id>https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Nustar&amp;diff=2834</id>
		<title>Nustar</title>
		<link rel="alternate" type="text/html" href="https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Nustar&amp;diff=2834"/>
		<updated>2023-06-15T15:36:59Z</updated>

		<summary type="html">&lt;p&gt;Thalhammer: Note on extraction for bright sources&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;====== NuSTAR data extraction ======&lt;br /&gt;
&lt;br /&gt;
'''Preparation:''' This step unpacks the data of both FPM to the specified 'prepdir'. The example observation is of Mrk 335.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/csh&lt;br /&gt;
   &lt;br /&gt;
set revolution = '6'&lt;br /&gt;
set obsid = '60001041005'&lt;br /&gt;
set datadir = /data/X-ray/NuSTAR/data/$revolution/$obsid&lt;br /&gt;
set prepdir = /userdata/data/$user/whereever/you/want&lt;br /&gt;
&lt;br /&gt;
nuprepare --datadir=$datadir --prepdir=$prepdir --all&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Spectrum and Lightcurve Extraction:'''&lt;br /&gt;
Now you can take a look at the raw images in prepdir/reprocessed/nu-obsid-A-or-B-01_cl.evt using ''ds9''. Create a region by clicking at the source and choose a circular region between 50 and 120&amp;lt;nowiki&amp;gt;''&amp;lt;/nowiki&amp;gt; radius centered on the source. You can save the coordinates under Region-&amp;gt;Save Regions... as .reg-file use the default coordinate system.&amp;lt;br /&amp;gt;&lt;br /&gt;
Choose and save another region for the background spectrum that does not contain any sources and make it as large as possible. Be careful that it is still within NuSTAR's FOV.&amp;lt;br /&amp;gt;&lt;br /&gt;
Now we can extract the spectrum using nuextract:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
#!/bin/csh&lt;br /&gt;
   &lt;br /&gt;
set revolution = '6'&lt;br /&gt;
set obsid = '60001041005'&lt;br /&gt;
set prepdir = /userdata/data/$user/whereever/you/want&lt;br /&gt;
&lt;br /&gt;
set name = extraction_a&lt;br /&gt;
set bkg = $prepdir/reprocessed/fpma_bkg.reg&lt;br /&gt;
set src = $prepdir/reprocessed/fpma_src.reg&lt;br /&gt;
&lt;br /&gt;
nuextract --prepdir=$prepdir --name=$name --srcreg=$src --bkgreg=$bkg --fpm='A'&lt;br /&gt;
&lt;br /&gt;
set name = extraction_b&lt;br /&gt;
set bkg = $prepdir/reprocessed/fpmb_bkg.reg&lt;br /&gt;
set src = $prepdir/reprocessed/fpmb_src.reg&lt;br /&gt;
&lt;br /&gt;
nuextract --prepdir=$prepdir --name=$name --srcreg=$src --bkgreg=$bkg --fpm='B'&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For time- or energy-limited extractions take a look at:&lt;br /&gt;
 nuextract --help&lt;br /&gt;
&lt;br /&gt;
===== Version information =====&lt;br /&gt;
&lt;br /&gt;
In order to find out the version of the NuSTARDAS and CALDB your data were extracted with, you can use the following commands:&lt;br /&gt;
&lt;br /&gt;
  fdump &amp;lt;fits_file_of_interest&amp;gt; page=no | grep -i nustardas&lt;br /&gt;
  fdump &amp;lt;fits_file_of_interest&amp;gt; page=no | grep -i caldb&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== Known Issues =====&lt;br /&gt;
&lt;br /&gt;
* Very long file and directory names can cause crashes in nuextract. The path $name has to be a relative path, otherwise nuextract crashes.&lt;br /&gt;
&lt;br /&gt;
===== Bright sources ======&lt;br /&gt;
&lt;br /&gt;
* For sources with count-rates exceeding ~100 counts per second it is advised to user the the additional nuprepare flag statusexpr=&amp;quot;(STATUS==b0000xxx00xxxx000)&amp;amp;&amp;amp;(SHIELD==0)&amp;quot;. &lt;br /&gt;
* For some timing analysis the SHIELD==0 term should be removed as this does introduce energy dependent timing features. &lt;br /&gt;
* Check the NuSTAR FAQ on bright sources for more information: https://heasarc.gsfc.nasa.gov/docs/nustar/nustar_faq.html#bright. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Data Extraction]]&lt;/div&gt;</summary>
		<author><name>Thalhammer</name></author>
	</entry>
	<entry>
		<id>https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Integral&amp;diff=2828</id>
		<title>Integral</title>
		<link rel="alternate" type="text/html" href="https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Integral&amp;diff=2828"/>
		<updated>2023-06-09T20:46:15Z</updated>

		<summary type="html">&lt;p&gt;Thalhammer: /* Time selection */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
=== INTEGRAL Scripts ===&lt;br /&gt;
&lt;br /&gt;
The Remeis INTEGRAL scripts can be found under&lt;br /&gt;
&lt;br /&gt;
  /software/Science/satscripts/intscripts/&lt;br /&gt;
&lt;br /&gt;
on Remeis machines. If you have any questions on how to use them, read the following text and talk to Ingo or Philipp.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== General remarks on Integral data extraction at Remeis: ===&lt;br /&gt;
&lt;br /&gt;
Initially data is extracted in parallel on a ScWs basis and in a second step combined to the final products. This allows for the usage of [[Slurm|SLURM]] and leads to significantly faster extraction compared to a combined extraction on a single machine. The initial step is launch by the scripts master_sbs. The script can generate spectra and images for ISGRI and spectra for JEMX. No PICsIT, SPI or OMC analysis is run at Remeis. The resulting spectra are then combined using spe_pick while the ISGRI/IBIS images are merged using INT_mosa_ibis. As the spectral extraction requires a catalog containing the sources for which the spectral extraction should be run, it is advised to first generate images &amp;amp; a mosaic to determine, which sources are bright and detected in the field of view. &lt;br /&gt;
Generally it is a good idea, if you have not already to have a look at the OSA cookbook, e.g., to check how the paths in the data object locator (DOL) files is supposed to look like or how to prepare a suitable catalog for spectral extraction: https://www.isdc.unige.ch/integral/analysis&lt;br /&gt;
&lt;br /&gt;
Before any OSA analysis can be run the corresponding module has to be load with:&lt;br /&gt;
  ml integral-osa&lt;br /&gt;
&lt;br /&gt;
Before running any data extraction you need to set up a few soft links:&lt;br /&gt;
  ln -sf /home/X-ray/INTEGRAL/archive/aux&lt;br /&gt;
  ln -sf /home/X-ray/INTEGRAL/archive/ic&lt;br /&gt;
  ln -sf /home/X-ray/INTEGRAL/archive/idx&lt;br /&gt;
  ln -sf /home/X-ray/INTEGRAL/archive/scw&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Typical IBIS image/mosaic ===&lt;br /&gt;
; 1) Find ScWs that cover your source, e.g., pointing is &amp;lt; 10 degree away from source: &lt;br /&gt;
  objscw --scwlist &amp;quot;Cyg X-1&amp;quot; --maxdist=10 &amp;gt; scws_all.txt&lt;br /&gt;
If you want to use scws_all.txt as input for hte next step remove the header of this file, i.e, the first 6 lines. Importantly you will probalby want to select only a subset of the available observations and therefore perform some selection on the full list of science windows. As a simple example one might image to only use the latest 100 ScWs:&lt;br /&gt;
  tail -n 100 scws_all.txt &amp;gt; scws_cut.txt&lt;br /&gt;
; 2) Start the ScW based analysis:&lt;br /&gt;
  master_sbs  --job=IMA --scwlist=scws_all.txt --energies=&amp;quot;30,50,200&amp;quot; --verbose --clobber=yes  --path=$PWD &lt;br /&gt;
; 3) Generate the required input file for spe_pick&lt;br /&gt;
  txt2idx element=&amp;quot;scws_dols.txt&amp;quot; index=&amp;quot;cygx1&amp;quot;&lt;br /&gt;
; 4) Run INT_mosa_ibis to generate the a combine mosaic&lt;br /&gt;
  INT_mosa_ibis --obsgrp=$PWD --dol=scws_dols.txt --destin=$PWD/obs/mosa_cygx1&lt;br /&gt;
; 5) Check the images for artifacts and sort out affected ScWs through trial-and-error:&lt;br /&gt;
  ds9 isgri_mosa_ima.fits[2] -region found.reg -cmap b -scale sqrt -scale limits 0 60 -zoom 2&lt;br /&gt;
&lt;br /&gt;
The resulting image should look something like this: &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:mosa_cygx1.png|400px]]&lt;br /&gt;
&lt;br /&gt;
Details about the detected sources, such as there flux and detection significance can be found in the file isgri_mosa_res.fits.&lt;br /&gt;
&lt;br /&gt;
=== Typical IBIS spectral analysis ===&lt;br /&gt;
; 1) Again, find ScWs that cover your source and are of interest to you&lt;br /&gt;
; 2) Start the ScW based analysis:&lt;br /&gt;
  master_sbs  --job=SPE --scwlist=scws_cut.txt --source=&amp;quot;Cyg X-1&amp;quot;  --verbose --clobber=yes  --path=$PWD --catalog=specat.fits&lt;br /&gt;
; 3) Generate the required input file for spe_pick. Check that that all objects in the DOL file  exist.&lt;br /&gt;
  txt2idx element=&amp;quot;scws_dols.txt&amp;quot; index=&amp;quot;cygx1&amp;quot;&lt;br /&gt;
; 4) Run spe_pick to generate the final spectra&lt;br /&gt;
  spe_pick group=&amp;quot;cygx1.fits&amp;quot; source=&amp;quot;Cyg X-1&amp;quot; rootname=&amp;quot;cygX1_all&amp;quot; instrument=&amp;quot;ISGRI&amp;quot;&lt;br /&gt;
This will result in background subtracted spectra for the given source. Remember that the source name has exactly the naming in the INTEGRAL reference catalog. &lt;br /&gt;
&lt;br /&gt;
=== Typical IBIS light-curve generation ===&lt;br /&gt;
; 1) Quite similar to the spectral extraction. First find ScWs that cover your source, or reuse the previous ScW list: &lt;br /&gt;
; 2) Start the ScW based analysis, here for 100s time binning:&lt;br /&gt;
  master_sbs  --job=LC --scwlist=scws_cut.txt --source=&amp;quot;Cyg X-1&amp;quot;  --verbose --clobber=yes  --path=$PWD --catalog=specat.fits --energies=30,120 --deltat=100&lt;br /&gt;
This generates a separate light-curve for each ScW at, e.g., obs/250300170010/scw/250300170010.001/250300170010_Cyg_X-1_30-120.lc&lt;br /&gt;
; 3) These can then be merged together e.g. using fmerge or ISIS. &lt;br /&gt;
  ls obs/*/scw/*.001/*_Cyg_X-1_30-120.lc &amp;gt;&amp;gt; lcs.txt&lt;br /&gt;
  fmerge @lcs.txt Cyg_X1_ibis_lc.fits -&lt;br /&gt;
&lt;br /&gt;
=== Typical JEMX spectral analysis ===&lt;br /&gt;
Until revolution 976 (Oct. 10,2010) only one JEM-X unit was operating at any give time. During that time one should therefore run the analysis for both detectors.&lt;br /&gt;
; 1) Find ScWs that cover your source. As JEMX has a smaller field of view, its max distance to the source should also be reduced to ~5 degreee: &lt;br /&gt;
  objscw --scwlist &amp;quot;Cyg X-1&amp;quot; --maxdist=5 &amp;gt; scws_jmx.txt&lt;br /&gt;
And again, you will probably further select in which ScWs you are interested.&lt;br /&gt;
; 2) Generate a RMF with the required binning, e.g., 32 bins:&lt;br /&gt;
  j_rebin_rmf  binlist=STD_032&lt;br /&gt;
The RMF does not change between observations and might be reused as long as binning requirements do not change. &lt;br /&gt;
(Depending on your fitting software the resulting RMF might give you troubles and needs to be rewritten.)&lt;br /&gt;
; 3) Start the ScW based analysis with 32=2^5 logarithmic energy bins:&lt;br /&gt;
  master_sbs  --path=$PWD --scwlist=scws_jemx_cut.txt --job=SPE --source=&amp;quot;Cyg X-1&amp;quot; --jemx=1 --clobber=yes --catalog=catalog_jemx.fits --response=jemx_rebinned_rmf.fits --nChanBins=-5&lt;br /&gt;
; 4) Generate the required input file for spe_pick&lt;br /&gt;
  txt2idx element=&amp;quot;scws_jmx_dols.txt&amp;quot; index=&amp;quot;cygx1&amp;quot;&lt;br /&gt;
; 5) Run spe_pick to generate the final spectra. &lt;br /&gt;
  spe_pick group=cygx1.fits source=&amp;quot;Cyg X-1&amp;quot; rootname=&amp;quot;cygx1&amp;quot; instrument=&amp;quot;JMX1&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== JEMX images ===&lt;br /&gt;
To generate JEMX images there are no dedicated scripts at Remeis, and you have to fall back to the OSA scripts, e.g.:&lt;br /&gt;
  og_create idxSwg=scw.lst ogid=oph2 baseDir=&amp;quot;./&amp;quot; instrument=JMX1&lt;br /&gt;
  jemx_science_analysis startLevel=&amp;quot;IMA2&amp;quot; endLevel=&amp;quot;IMA2&amp;quot; jemxNum=1 COR_gainModel=2&lt;br /&gt;
&lt;br /&gt;
=== On catalogs ===&lt;br /&gt;
Adapted from the documentation: &lt;br /&gt;
While for generally image generation a user generated catalog is not required, if supplied, it needs to keeps the same format of the general reference catalog from which it was built, i.e. it has the extension of the type ”GNRL-REFR-CAT”. This is the correct extension to be used as input for the Imaging step. In Section 7.2 of the OSA manual, you are been shown how to build a catalog for the lightcurve (LCR) and spectral (SPE) step. In that case the catalog, you obtained, specat.fits, was of the type of ”ISGR-SRCLRES” which is the correct format for the LCR and SPE steps. The two formats cannot be switched, meaning that you cannot use a ”GNRL-REFR-CAT” type catalog for SPE and LCR or an ”ISGR-SRCL-RES” one for IMA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In practice one prepares the catalog used for spectral extraction from the results of the IMA step, taking only into account actually detected sources, e.g. by running the following on the results of INT_mosa_ibis:&lt;br /&gt;
 fcopy &amp;quot;isgri_srcl_res.fits[1][DETSIG&amp;gt;10]&amp;quot; specat.fits&lt;br /&gt;
&lt;br /&gt;
=== Time selection ===&lt;br /&gt;
&lt;br /&gt;
User generated GTI files can be used to perform time or phase resolved spectral analysis. This is done through the --gtiname &amp;amp; --gtiformat keywords. Consult the master_sbs help for more details. To generate GTI file it is recommended to make use of the OSA script gti_user, e.g., as follows:&lt;br /&gt;
&lt;br /&gt;
  gti_user tstart=8170.5 tstop=8171.8 unit=sec begin=0.0 end=50 step=150 repeat=653 gti=user_gti.fits clobber=yes&lt;br /&gt;
&lt;br /&gt;
Or for a to calculate a reverse bary-corrected GTI file. Not that this requires the coordinated and the DOL file of a ScW or Observation Group. &lt;br /&gt;
&lt;br /&gt;
  gti_user tstart=8393.16 unit=sec begin=0.0 end=50 step=25 repeat=600 gti=user_gti.fits clobber=yes bary=y group=og_ibis.fits+1&lt;br /&gt;
&lt;br /&gt;
Also note that the light-curves generated by  imalc_sbs through master_sbs are already barycenter corrected.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
More details can be found in the introduction to INTEGRAL analysis:&lt;br /&gt;
&lt;br /&gt;
https://www.isdc.unige.ch/integral/download/osa/doc/11.2/osa_um_intro.pdf&lt;br /&gt;
&lt;br /&gt;
=== Quick Look Analysis ===&lt;br /&gt;
&lt;br /&gt;
NRT data can also be analysed at Remeis with the usual scripts, require, however, an additional --nrt parameter in most scripts. &lt;br /&gt;
Also have a look at http://isdc.unige.ch/heavens/&lt;br /&gt;
&lt;br /&gt;
=== Documentation ===&lt;br /&gt;
&lt;br /&gt;
Useful to know:&lt;br /&gt;
http://www.isdc.unige.ch/integral/download/osa/doc/10.0/osa_um_ibis/node27.html&lt;br /&gt;
And for the cook-book and general documentation. Reading the IBIS Analysis User Manual is recommend: &lt;br /&gt;
https://www.isdc.unige.ch/integral/analysis&lt;br /&gt;
Each INTEGTAL script also has a help&lt;br /&gt;
  master_sbs --help&lt;br /&gt;
  cat $ISDC_ENV/help/ibis_science_analysis.txt&lt;br /&gt;
&lt;br /&gt;
=== Abbreviations ===&lt;br /&gt;
http://www.isdc.unige.ch/integral/support/glossary&lt;br /&gt;
&lt;br /&gt;
* '''DAL''' The Data Access Layer (DAL) is a software library used to manipulate (create, write, read and manage) scientific data. &lt;br /&gt;
* '''DOL''' The Data Object Location (DOL) specifies the location of a DAL object, both by the FITS file name and its extension. For instance, /isdc/dev/xxx.fits[2] is a DOL, while xxx.fits is simply the name of a FITS file. &lt;br /&gt;
&lt;br /&gt;
=== Known Issues ===&lt;br /&gt;
# In general: check first http://www.isdc.unige.ch/integral/support/faq for the error code you get&lt;br /&gt;
# The resulting spectra will not be strictly OGIP compliant, which e.g. ISIS might care about, but can be ignored.&lt;br /&gt;
&lt;br /&gt;
==== Errors mosaicing using custom DOLs ====&lt;br /&gt;
If you want to create a mosaic using DOL (Data Object Location) files, sometimes the building interrupts with errors like a Fortran Runtime error (http://www.isdc.unige.ch/integral/support/faq.cgi?SOFT-051) or errors like:&lt;br /&gt;
&lt;br /&gt;
  Using and copying first SCW &amp;gt;&amp;gt;/scratch1/beuchert/integral/scw_extr/obs/125400400010/scw/125400400010.001/swg_ibis.fits&lt;br /&gt;
  &amp;lt;&amp;lt;&lt;br /&gt;
  Log_0  :  100 elements opened.&lt;br /&gt;
  Log_0  :  100 elements attached.&lt;br /&gt;
  Error_1: Can not update the index.&lt;br /&gt;
&lt;br /&gt;
or&lt;br /&gt;
  Error_1: Can not close the element&lt;br /&gt;
or &lt;br /&gt;
  Error_2: DAL_READ_ERROR : error reading from FITS file&lt;br /&gt;
etc.&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
# Somehow corrupted scws? Collect sets of two scws and create Mosaics based on those. Like that it is easy to enclose corrupted scws.&lt;br /&gt;
# An error -2004 (DAL_FILE_NOT_ACCESSIBLE) often results because one of your groups is corrupted. Before restarting the analysis, make a ``dal_clean'', which should be able to do an automatic repair. If it does not work try a ``dal_verify'' to see what is corrupted. Or you can try to open your group (or child group) with fv and look for a file pointed by the group that does not exists. Most of the time removing the line with this wrong file in the group table is fixing your problem.&lt;br /&gt;
&lt;br /&gt;
The latter:&lt;br /&gt;
first create an observation group out of your dol-list of scws.&lt;br /&gt;
Creating observation groups is also the canonical way of extracting INTEGRAL/IBIS data.&lt;br /&gt;
Before doing that, the soft links as noted above have to be set in the directory.&lt;br /&gt;
Then:&lt;br /&gt;
  cd path/to/dir/with/softlinks/&lt;br /&gt;
  og_create idxSwg=dol.txt ogid=isgri_gc baseDir=&amp;quot;./&amp;quot; instrument=IBIS&lt;br /&gt;
  ls obs/isgri_gc/&lt;br /&gt;
Repair the observation group and included indices/links with &lt;br /&gt;
  dal_clean inDOL=&amp;quot;obs/isgri_gc/og_ibis.fits&amp;quot; chatty=&amp;quot;4&amp;quot; checkExt=&amp;quot;1&amp;quot;&lt;br /&gt;
Now INT_mosa_ibis should work again on the scws in dol.txt&lt;br /&gt;
&lt;br /&gt;
==== How to create mosaics (outdated) ====&lt;br /&gt;
&lt;br /&gt;
First make a list of scws you want to add to a mosaic, i.e., a &amp;quot;dol-file&amp;quot; dol.txt:&lt;br /&gt;
  /scratch1/beuchert/integral/scw_extr/obs/066200340010/scw/066200340010.001/swg_ibis.fits&lt;br /&gt;
  /scratch1/beuchert/integral/scw_extr/obs/066200350010/scw/066200350010.001/swg_ibis.fits&lt;br /&gt;
  /scratch1/beuchert/integral/scw_extr/obs/066200360010/scw/066200360010.001/swg_ibis.fits&lt;br /&gt;
Then prepare the directory where the mosaic shall be built in, i.e., set the env. variables to allow INT_mosa_ibis to find indices etc.:&lt;br /&gt;
  cd /some/path/&lt;br /&gt;
  ln -s /virgo/b/INTEGRAL/aux/&lt;br /&gt;
  ln -s /virgo/b/INTEGRAL/idx/&lt;br /&gt;
  ln -s /virgo/b/INTEGRAL/ic/&lt;br /&gt;
  ln -s /virgo/b/INTEGRAL/scw/&lt;br /&gt;
  ln -s /virgo/b/INTEGRAL/cat/&lt;br /&gt;
  mkdir /some/path/obs/&lt;br /&gt;
  &lt;br /&gt;
  INT_mosa_ibis --obsgrp=/path/to/all/extracted/scws/ --destin=/path/to/the/prepared/directory/obs/mosa_og/ --dol=&amp;quot;dol.txt&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== Non-OSA INTEGRAL extraction ===&lt;br /&gt;
&lt;br /&gt;
There are a few alternatives by now to using OSA+Remeis scripts:&lt;br /&gt;
* To run IBIS and JEMX analysis online there is MMODA at https://www.astro.unige.ch/mmoda/help/mmoda/integral-mission&lt;br /&gt;
* If you are interested in SPI data you can do this with the OSA installed here at Remeis, there are however much more reliable and stable pipelines available in form of either SPI-DAI or the SPI-pipeline at MPE organized by Tomas Stiegert. &lt;br /&gt;
&lt;br /&gt;
[[Category:Data Extraction]]&lt;/div&gt;</summary>
		<author><name>Thalhammer</name></author>
	</entry>
	<entry>
		<id>https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Integral&amp;diff=2826</id>
		<title>Integral</title>
		<link rel="alternate" type="text/html" href="https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Integral&amp;diff=2826"/>
		<updated>2023-06-07T19:38:04Z</updated>

		<summary type="html">&lt;p&gt;Thalhammer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
=== INTEGRAL Scripts ===&lt;br /&gt;
&lt;br /&gt;
The Remeis INTEGRAL scripts can be found under&lt;br /&gt;
&lt;br /&gt;
  /software/Science/satscripts/intscripts/&lt;br /&gt;
&lt;br /&gt;
on Remeis machines. If you have any questions on how to use them, read the following text and talk to Ingo or Philipp.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== General remarks on Integral data extraction at Remeis: ===&lt;br /&gt;
&lt;br /&gt;
Initially data is extracted in parallel on a ScWs basis and in a second step combined to the final products. This allows for the usage of [[Slurm|SLURM]] and leads to significantly faster extraction compared to a combined extraction on a single machine. The initial step is launch by the scripts master_sbs. The script can generate spectra and images for ISGRI and spectra for JEMX. No PICsIT, SPI or OMC analysis is run at Remeis. The resulting spectra are then combined using spe_pick while the ISGRI/IBIS images are merged using INT_mosa_ibis. As the spectral extraction requires a catalog containing the sources for which the spectral extraction should be run, it is advised to first generate images &amp;amp; a mosaic to determine, which sources are bright and detected in the field of view. &lt;br /&gt;
Generally it is a good idea, if you have not already to have a look at the OSA cookbook, e.g., to check how the paths in the data object locator (DOL) files is supposed to look like or how to prepare a suitable catalog for spectral extraction: https://www.isdc.unige.ch/integral/analysis&lt;br /&gt;
&lt;br /&gt;
Before any OSA analysis can be run the corresponding module has to be load with:&lt;br /&gt;
  ml integral-osa&lt;br /&gt;
&lt;br /&gt;
Before running any data extraction you need to set up a few soft links:&lt;br /&gt;
  ln -sf /home/X-ray/INTEGRAL/archive/aux&lt;br /&gt;
  ln -sf /home/X-ray/INTEGRAL/archive/ic&lt;br /&gt;
  ln -sf /home/X-ray/INTEGRAL/archive/idx&lt;br /&gt;
  ln -sf /home/X-ray/INTEGRAL/archive/scw&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Typical IBIS image/mosaic ===&lt;br /&gt;
; 1) Find ScWs that cover your source, e.g., pointing is &amp;lt; 10 degree away from source: &lt;br /&gt;
  objscw --scwlist &amp;quot;Cyg X-1&amp;quot; --maxdist=10 &amp;gt; scws_all.txt&lt;br /&gt;
If you want to use scws_all.txt as input for hte next step remove the header of this file, i.e, the first 6 lines. Importantly you will probalby want to select only a subset of the available observations and therefore perform some selection on the full list of science windows. As a simple example one might image to only use the latest 100 ScWs:&lt;br /&gt;
  tail -n 100 scws_all.txt &amp;gt; scws_cut.txt&lt;br /&gt;
; 2) Start the ScW based analysis:&lt;br /&gt;
  master_sbs  --job=IMA --scwlist=scws_all.txt --energies=&amp;quot;30,50,200&amp;quot; --verbose --clobber=yes  --path=$PWD &lt;br /&gt;
; 3) Generate the required input file for spe_pick&lt;br /&gt;
  txt2idx element=&amp;quot;scws_dols.txt&amp;quot; index=&amp;quot;cygx1&amp;quot;&lt;br /&gt;
; 4) Run INT_mosa_ibis to generate the a combine mosaic&lt;br /&gt;
  INT_mosa_ibis --obsgrp=$PWD --dol=scws_dols.txt --destin=$PWD/obs/mosa_cygx1&lt;br /&gt;
; 5) Check the images for artifacts and sort out affected ScWs through trial-and-error:&lt;br /&gt;
  ds9 isgri_mosa_ima.fits[2] -region found.reg -cmap b -scale sqrt -scale limits 0 60 -zoom 2&lt;br /&gt;
&lt;br /&gt;
The resulting image should look something like this: &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:mosa_cygx1.png|400px]]&lt;br /&gt;
&lt;br /&gt;
Details about the detected sources, such as there flux and detection significance can be found in the file isgri_mosa_res.fits.&lt;br /&gt;
&lt;br /&gt;
=== Typical IBIS spectral analysis ===&lt;br /&gt;
; 1) Again, find ScWs that cover your source and are of interest to you&lt;br /&gt;
; 2) Start the ScW based analysis:&lt;br /&gt;
  master_sbs  --job=SPE --scwlist=scws_cut.txt --source=&amp;quot;Cyg X-1&amp;quot;  --verbose --clobber=yes  --path=$PWD --catalog=specat.fits&lt;br /&gt;
; 3) Generate the required input file for spe_pick. Check that that all objects in the DOL file  exist.&lt;br /&gt;
  txt2idx element=&amp;quot;scws_dols.txt&amp;quot; index=&amp;quot;cygx1&amp;quot;&lt;br /&gt;
; 4) Run spe_pick to generate the final spectra&lt;br /&gt;
  spe_pick group=&amp;quot;cygx1.fits&amp;quot; source=&amp;quot;Cyg X-1&amp;quot; rootname=&amp;quot;cygX1_all&amp;quot; instrument=&amp;quot;ISGRI&amp;quot;&lt;br /&gt;
This will result in background subtracted spectra for the given source. Remember that the source name has exactly the naming in the INTEGRAL reference catalog. &lt;br /&gt;
&lt;br /&gt;
=== Typical IBIS light-curve generation ===&lt;br /&gt;
; 1) Quite similar to the spectral extraction. First find ScWs that cover your source, or reuse the previous ScW list: &lt;br /&gt;
; 2) Start the ScW based analysis, here for 100s time binning:&lt;br /&gt;
  master_sbs  --job=LC --scwlist=scws_cut.txt --source=&amp;quot;Cyg X-1&amp;quot;  --verbose --clobber=yes  --path=$PWD --catalog=specat.fits --energies=30,120 --deltat=100&lt;br /&gt;
This generates a separate light-curve for each ScW at, e.g., obs/250300170010/scw/250300170010.001/250300170010_Cyg_X-1_30-120.lc&lt;br /&gt;
; 3) These can then be merged together e.g. using fmerge or ISIS. &lt;br /&gt;
  ls obs/*/scw/*.001/*_Cyg_X-1_30-120.lc &amp;gt;&amp;gt; lcs.txt&lt;br /&gt;
  fmerge @lcs.txt Cyg_X1_ibis_lc.fits -&lt;br /&gt;
&lt;br /&gt;
=== Typical JEMX spectral analysis ===&lt;br /&gt;
Until revolution 976 (Oct. 10,2010) only one JEM-X unit was operating at any give time. During that time one should therefore run the analysis for both detectors.&lt;br /&gt;
; 1) Find ScWs that cover your source. As JEMX has a smaller field of view, its max distance to the source should also be reduced to ~5 degreee: &lt;br /&gt;
  objscw --scwlist &amp;quot;Cyg X-1&amp;quot; --maxdist=5 &amp;gt; scws_jmx.txt&lt;br /&gt;
And again, you will probably further select in which ScWs you are interested.&lt;br /&gt;
; 2) Generate a RMF with the required binning, e.g., 32 bins:&lt;br /&gt;
  j_rebin_rmf  binlist=STD_032&lt;br /&gt;
The RMF does not change between observations and might be reused as long as binning requirements do not change. &lt;br /&gt;
(Depending on your fitting software the resulting RMF might give you troubles and needs to be rewritten.)&lt;br /&gt;
; 3) Start the ScW based analysis with 32=2^5 logarithmic energy bins:&lt;br /&gt;
  master_sbs  --path=$PWD --scwlist=scws_jemx_cut.txt --job=SPE --source=&amp;quot;Cyg X-1&amp;quot; --jemx=1 --clobber=yes --catalog=catalog_jemx.fits --response=jemx_rebinned_rmf.fits --nChanBins=-5&lt;br /&gt;
; 4) Generate the required input file for spe_pick&lt;br /&gt;
  txt2idx element=&amp;quot;scws_jmx_dols.txt&amp;quot; index=&amp;quot;cygx1&amp;quot;&lt;br /&gt;
; 5) Run spe_pick to generate the final spectra. &lt;br /&gt;
  spe_pick group=cygx1.fits source=&amp;quot;Cyg X-1&amp;quot; rootname=&amp;quot;cygx1&amp;quot; instrument=&amp;quot;JMX1&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== JEMX images ===&lt;br /&gt;
To generate JEMX images there are no dedicated scripts at Remeis, and you have to fall back to the OSA scripts, e.g.:&lt;br /&gt;
  og_create idxSwg=scw.lst ogid=oph2 baseDir=&amp;quot;./&amp;quot; instrument=JMX1&lt;br /&gt;
  jemx_science_analysis startLevel=&amp;quot;IMA2&amp;quot; endLevel=&amp;quot;IMA2&amp;quot; jemxNum=1 COR_gainModel=2&lt;br /&gt;
&lt;br /&gt;
=== On catalogs ===&lt;br /&gt;
Adapted from the documentation: &lt;br /&gt;
While for generally image generation a user generated catalog is not required, if supplied, it needs to keeps the same format of the general reference catalog from which it was built, i.e. it has the extension of the type ”GNRL-REFR-CAT”. This is the correct extension to be used as input for the Imaging step. In Section 7.2 of the OSA manual, you are been shown how to build a catalog for the lightcurve (LCR) and spectral (SPE) step. In that case the catalog, you obtained, specat.fits, was of the type of ”ISGR-SRCLRES” which is the correct format for the LCR and SPE steps. The two formats cannot be switched, meaning that you cannot use a ”GNRL-REFR-CAT” type catalog for SPE and LCR or an ”ISGR-SRCL-RES” one for IMA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In practice one prepares the catalog used for spectral extraction from the results of the IMA step, taking only into account actually detected sources, e.g. by running the following on the results of INT_mosa_ibis:&lt;br /&gt;
 fcopy &amp;quot;isgri_srcl_res.fits[1][DETSIG&amp;gt;10]&amp;quot; specat.fits&lt;br /&gt;
&lt;br /&gt;
=== Time selection ===&lt;br /&gt;
&lt;br /&gt;
User generated GTI files can be used to perform time or phase resolved spectral analysis. This is done through the --gtiname &amp;amp; --gtiformat keywords. Consult the master_sbs help for more details. To generate GTI file it is recommended to make use of the OSA script gti_user, e.g., as follows:&lt;br /&gt;
&lt;br /&gt;
  gti_user tstart=8170.5 tstop=8171.8 unit=sec begin=0.0 end=50 step=150 repeat=653 gti=user_gti.fits clobber=yes&lt;br /&gt;
&lt;br /&gt;
More details can be found in the introduction to INTEGRAL analysis:&lt;br /&gt;
&lt;br /&gt;
https://www.isdc.unige.ch/integral/download/osa/doc/11.2/osa_um_intro.pdf&lt;br /&gt;
&lt;br /&gt;
=== Quick Look Analysis ===&lt;br /&gt;
&lt;br /&gt;
NRT data can also be analysed at Remeis with the usual scripts, require, however, an additional --nrt parameter in most scripts. &lt;br /&gt;
Also have a look at http://isdc.unige.ch/heavens/&lt;br /&gt;
&lt;br /&gt;
=== Documentation ===&lt;br /&gt;
&lt;br /&gt;
Useful to know:&lt;br /&gt;
http://www.isdc.unige.ch/integral/download/osa/doc/10.0/osa_um_ibis/node27.html&lt;br /&gt;
And for the cook-book and general documentation. Reading the IBIS Analysis User Manual is recommend: &lt;br /&gt;
https://www.isdc.unige.ch/integral/analysis&lt;br /&gt;
Each INTEGTAL script also has a help&lt;br /&gt;
  master_sbs --help&lt;br /&gt;
  cat $ISDC_ENV/help/ibis_science_analysis.txt&lt;br /&gt;
&lt;br /&gt;
=== Abbreviations ===&lt;br /&gt;
http://www.isdc.unige.ch/integral/support/glossary&lt;br /&gt;
&lt;br /&gt;
* '''DAL''' The Data Access Layer (DAL) is a software library used to manipulate (create, write, read and manage) scientific data. &lt;br /&gt;
* '''DOL''' The Data Object Location (DOL) specifies the location of a DAL object, both by the FITS file name and its extension. For instance, /isdc/dev/xxx.fits[2] is a DOL, while xxx.fits is simply the name of a FITS file. &lt;br /&gt;
&lt;br /&gt;
=== Known Issues ===&lt;br /&gt;
# In general: check first http://www.isdc.unige.ch/integral/support/faq for the error code you get&lt;br /&gt;
# The resulting spectra will not be strictly OGIP compliant, which e.g. ISIS might care about, but can be ignored.&lt;br /&gt;
&lt;br /&gt;
==== Errors mosaicing using custom DOLs ====&lt;br /&gt;
If you want to create a mosaic using DOL (Data Object Location) files, sometimes the building interrupts with errors like a Fortran Runtime error (http://www.isdc.unige.ch/integral/support/faq.cgi?SOFT-051) or errors like:&lt;br /&gt;
&lt;br /&gt;
  Using and copying first SCW &amp;gt;&amp;gt;/scratch1/beuchert/integral/scw_extr/obs/125400400010/scw/125400400010.001/swg_ibis.fits&lt;br /&gt;
  &amp;lt;&amp;lt;&lt;br /&gt;
  Log_0  :  100 elements opened.&lt;br /&gt;
  Log_0  :  100 elements attached.&lt;br /&gt;
  Error_1: Can not update the index.&lt;br /&gt;
&lt;br /&gt;
or&lt;br /&gt;
  Error_1: Can not close the element&lt;br /&gt;
or &lt;br /&gt;
  Error_2: DAL_READ_ERROR : error reading from FITS file&lt;br /&gt;
etc.&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
# Somehow corrupted scws? Collect sets of two scws and create Mosaics based on those. Like that it is easy to enclose corrupted scws.&lt;br /&gt;
# An error -2004 (DAL_FILE_NOT_ACCESSIBLE) often results because one of your groups is corrupted. Before restarting the analysis, make a ``dal_clean'', which should be able to do an automatic repair. If it does not work try a ``dal_verify'' to see what is corrupted. Or you can try to open your group (or child group) with fv and look for a file pointed by the group that does not exists. Most of the time removing the line with this wrong file in the group table is fixing your problem.&lt;br /&gt;
&lt;br /&gt;
The latter:&lt;br /&gt;
first create an observation group out of your dol-list of scws.&lt;br /&gt;
Creating observation groups is also the canonical way of extracting INTEGRAL/IBIS data.&lt;br /&gt;
Before doing that, the soft links as noted above have to be set in the directory.&lt;br /&gt;
Then:&lt;br /&gt;
  cd path/to/dir/with/softlinks/&lt;br /&gt;
  og_create idxSwg=dol.txt ogid=isgri_gc baseDir=&amp;quot;./&amp;quot; instrument=IBIS&lt;br /&gt;
  ls obs/isgri_gc/&lt;br /&gt;
Repair the observation group and included indices/links with &lt;br /&gt;
  dal_clean inDOL=&amp;quot;obs/isgri_gc/og_ibis.fits&amp;quot; chatty=&amp;quot;4&amp;quot; checkExt=&amp;quot;1&amp;quot;&lt;br /&gt;
Now INT_mosa_ibis should work again on the scws in dol.txt&lt;br /&gt;
&lt;br /&gt;
==== How to create mosaics (outdated) ====&lt;br /&gt;
&lt;br /&gt;
First make a list of scws you want to add to a mosaic, i.e., a &amp;quot;dol-file&amp;quot; dol.txt:&lt;br /&gt;
  /scratch1/beuchert/integral/scw_extr/obs/066200340010/scw/066200340010.001/swg_ibis.fits&lt;br /&gt;
  /scratch1/beuchert/integral/scw_extr/obs/066200350010/scw/066200350010.001/swg_ibis.fits&lt;br /&gt;
  /scratch1/beuchert/integral/scw_extr/obs/066200360010/scw/066200360010.001/swg_ibis.fits&lt;br /&gt;
Then prepare the directory where the mosaic shall be built in, i.e., set the env. variables to allow INT_mosa_ibis to find indices etc.:&lt;br /&gt;
  cd /some/path/&lt;br /&gt;
  ln -s /virgo/b/INTEGRAL/aux/&lt;br /&gt;
  ln -s /virgo/b/INTEGRAL/idx/&lt;br /&gt;
  ln -s /virgo/b/INTEGRAL/ic/&lt;br /&gt;
  ln -s /virgo/b/INTEGRAL/scw/&lt;br /&gt;
  ln -s /virgo/b/INTEGRAL/cat/&lt;br /&gt;
  mkdir /some/path/obs/&lt;br /&gt;
  &lt;br /&gt;
  INT_mosa_ibis --obsgrp=/path/to/all/extracted/scws/ --destin=/path/to/the/prepared/directory/obs/mosa_og/ --dol=&amp;quot;dol.txt&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== Non-OSA INTEGRAL extraction ===&lt;br /&gt;
&lt;br /&gt;
There are a few alternatives by now to using OSA+Remeis scripts:&lt;br /&gt;
* To run IBIS and JEMX analysis online there is MMODA at https://www.astro.unige.ch/mmoda/help/mmoda/integral-mission&lt;br /&gt;
* If you are interested in SPI data you can do this with the OSA installed here at Remeis, there are however much more reliable and stable pipelines available in form of either SPI-DAI or the SPI-pipeline at MPE organized by Tomas Stiegert. &lt;br /&gt;
&lt;br /&gt;
[[Category:Data Extraction]]&lt;/div&gt;</summary>
		<author><name>Thalhammer</name></author>
	</entry>
	<entry>
		<id>https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Nicer&amp;diff=2824</id>
		<title>Nicer</title>
		<link rel="alternate" type="text/html" href="https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Nicer&amp;diff=2824"/>
		<updated>2023-06-07T10:34:07Z</updated>

		<summary type="html">&lt;p&gt;Thalhammer: /* Background generation: */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== NICER data extraction ==&lt;br /&gt;
&lt;br /&gt;
NICER is a soft X-ray observatory on board the ISS. Biggest difference to many&lt;br /&gt;
other modern X-ray satellites are its silicon drift detectors and X-ray&lt;br /&gt;
concentrators (instead of focusing mirrors), which together do not permit&lt;br /&gt;
imaging capabilities. While this simplifies the data extraction, it is also required  &lt;br /&gt;
to simulate a background for each observation. &amp;lt;br /&amp;gt; Previously downloaded&lt;br /&gt;
NICER observations can be found under /satdata/X-ray/nicer/. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Preparation:=== &lt;br /&gt;
&lt;br /&gt;
To apply the the latest calibration and filtering, first run&lt;br /&gt;
'xtiprepare'.   The script will produce  cleaned event&lt;br /&gt;
files inside the subdirectory 'reprocessed' inside 'prepdir'.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/csh&lt;br /&gt;
&lt;br /&gt;
set datadir = /data/X-ray/nicer/data/2200570101&lt;br /&gt;
set prepdir = '/userdata/data/$user/where/ever/you/want'&lt;br /&gt;
&lt;br /&gt;
xtiprepare --datadir=$datadir  --prepdir=$prepdir  &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you notice an increased background in the resulting spectra, you&lt;br /&gt;
can apply additional filter criteria during the preparation. See&lt;br /&gt;
'xtiprepare --help' for more information. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Spectrum and Light-curve Extraction:===&lt;br /&gt;
&lt;br /&gt;
To produce light-curves, spectra and apply barycenter correction&lt;br /&gt;
'xtiextract' can be used as follows.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/csh&lt;br /&gt;
&lt;br /&gt;
set prepdir = '/userdata/data/$user/where/ever/you/want'&lt;br /&gt;
set dirname = 'extraction_123'&lt;br /&gt;
&lt;br /&gt;
xtiextract --name=$dirname --prepdir=$prepdir&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The produced spectrum and light-curve can then be found in the&lt;br /&gt;
subdirecory 'dirname' in $prepdir. Currently no observation-specific &lt;br /&gt;
response files are generated, but instead soft links to the current ARF &lt;br /&gt;
&amp;amp; RMF files included in the CALDB are generated.&lt;br /&gt;
&lt;br /&gt;
=== Background generation: ===&lt;br /&gt;
&lt;br /&gt;
As we cannot produce a background spectrum from an off-source region on the&lt;br /&gt;
detector, a background spectrum has to be modeled. Currently there are three&lt;br /&gt;
different tools available for that purpose (sw', '3c50' and 'scorpeon'). &lt;br /&gt;
One based on external parameters during the observation (i.e., space weather, &lt;br /&gt;
solar angle and cutoff-rigidity of earths B-field), one based on the internal &lt;br /&gt;
distribution of measured events and  one using both and giving the user the &lt;br /&gt;
option to adjust/fit the different background components. &lt;br /&gt;
&lt;br /&gt;
You can switch between them using the bkgmod_ parameter of extraction. &lt;br /&gt;
Only the sw-model is curreltly able to also provide background light-curves.&lt;br /&gt;
For more information see :&amp;lt;br /&amp;gt;&lt;br /&gt;
https://heasarc.gsfc.nasa.gov/docs/nicer/tools/nicer_bkg_est_tools.html&lt;br /&gt;
&lt;br /&gt;
=== Issues to keep in mind:  ===&lt;br /&gt;
&lt;br /&gt;
Feel free to expand this list whenever you came across any new issues.&lt;br /&gt;
&lt;br /&gt;
''' Optical loading: '''&lt;br /&gt;
&lt;br /&gt;
When optical light is reflected onto the detectors, this can&lt;br /&gt;
significantly increase the low-energy background below 3keV. This is&lt;br /&gt;
most significant for solar angles below ~70 degrees. However, due to&lt;br /&gt;
its position on the ISS this can also happen at any solar angle when&lt;br /&gt;
light is reflected by other part of the ISS. &lt;br /&gt;
&lt;br /&gt;
''' Polar Horns: '''&lt;br /&gt;
&lt;br /&gt;
Unlike other observatories in LEO the ISS is on an orbit with a quite&lt;br /&gt;
high inclination of 51.6 degrees.  This means the ISS passes through&lt;br /&gt;
the so called polar horn regions, where the outer Van Allen belt reach&lt;br /&gt;
LEO. These regions can feature an increased population of energetic&lt;br /&gt;
electrons, which can induce a strong background signal in NICER,&lt;br /&gt;
particular at higher energies. &amp;lt;br /&amp;gt;&lt;br /&gt;
See this &amp;quot;science nugget&amp;quot; for more information:&amp;lt;br /&amp;gt;&lt;br /&gt;
https://heasarc.gsfc.nasa.gov/docs/nicer/science_nuggets/20180809.html&lt;br /&gt;
&lt;br /&gt;
''' Overly aggressive filtering: '''&lt;br /&gt;
&lt;br /&gt;
It can happen, that e.g. optical loading leads to a filter parameter&lt;br /&gt;
exceeding the standard filter criteria for most of certain&lt;br /&gt;
observations. &lt;br /&gt;
If that happens you should check the .mkf-file and see whether any of the parameters &lt;br /&gt;
exceeds the default filter criteria specified in the fhelp of nimaketime. &lt;br /&gt;
This can be done e.g. using fplot:&lt;br /&gt;
  fplot *.mkf TIME &amp;quot;FPM_UNDERONLY_COUNT SUN_ANGLE FPM_OVERONLY_COUNT SUNSHINE &amp;quot;&lt;br /&gt;
&lt;br /&gt;
Such an observation might still be of interest, however.&lt;br /&gt;
In that case one might want to increase the allowed range e.g. for&lt;br /&gt;
&amp;quot;underonly_range&amp;quot; in &amp;quot;xtiprepare&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
''' Large event files: '''&lt;br /&gt;
&lt;br /&gt;
The downloaded eventfiles are generally compressed and are extracted to memory &lt;br /&gt;
before the data processing.  This fails for large eventfiles of several GB. &lt;br /&gt;
In this case one has to unzip the file event_cl/niXXXXXXXXXX_0mpu7_ufa.evt.gz &lt;br /&gt;
before running xtiprepare.&lt;br /&gt;
&lt;br /&gt;
''' Active FPMs: '''&lt;br /&gt;
&lt;br /&gt;
NICER has 56 focal-plane modules (FPMs) of which 52 are usually active. For&lt;br /&gt;
different reasons, e.g. annealing, sometimes some FPMs are switched off. And&lt;br /&gt;
sometimes you have excluded certain FPMs because of their increased background&lt;br /&gt;
(especially FPM 14 &amp;amp; 34). In both cases you have to be careful to scale the ARF&lt;br /&gt;
or generate a new one. So one should check the event files how many detectors where&lt;br /&gt;
active during the observation. &amp;lt;br /&amp;gt;&lt;br /&gt;
More info here: https://heasarc.gsfc.nasa.gov/docs/nicer/analysis_threads/arf-rmf/&lt;br /&gt;
&lt;br /&gt;
''' Damage to the optical bench '''&lt;br /&gt;
&lt;br /&gt;
On May 22, 2023, between 13:00 and 14:00 UTC, NICER appears to have developed a &lt;br /&gt;
visible-light leak in the X-ray Timing Instrument (XTI) optical bench. This leads to &lt;br /&gt;
and increase in the undershoot rate, background at soft energies and can lead to &lt;br /&gt;
detectors switching off, telemetry saturation, and spurious timing features.&lt;br /&gt;
This only affects observations performed during orbital days. Night time observations &lt;br /&gt;
are unaffected. &lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
[[Category:Data Extraction]]&lt;/div&gt;</summary>
		<author><name>Thalhammer</name></author>
	</entry>
	<entry>
		<id>https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Nicer&amp;diff=2823</id>
		<title>Nicer</title>
		<link rel="alternate" type="text/html" href="https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Nicer&amp;diff=2823"/>
		<updated>2023-06-07T10:09:14Z</updated>

		<summary type="html">&lt;p&gt;Thalhammer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== NICER data extraction ==&lt;br /&gt;
&lt;br /&gt;
NICER is a soft X-ray observatory on board the ISS. Biggest difference to many&lt;br /&gt;
other modern X-ray satellites are its silicon drift detectors and X-ray&lt;br /&gt;
concentrators (instead of focusing mirrors), which together do not permit&lt;br /&gt;
imaging capabilities. While this simplifies the data extraction, it is also required  &lt;br /&gt;
to simulate a background for each observation. &amp;lt;br /&amp;gt; Previously downloaded&lt;br /&gt;
NICER observations can be found under /satdata/X-ray/nicer/. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Preparation:=== &lt;br /&gt;
&lt;br /&gt;
To apply the the latest calibration and filtering, first run&lt;br /&gt;
'xtiprepare'.   The script will produce  cleaned event&lt;br /&gt;
files inside the subdirectory 'reprocessed' inside 'prepdir'.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/csh&lt;br /&gt;
&lt;br /&gt;
set datadir = /data/X-ray/nicer/data/2200570101&lt;br /&gt;
set prepdir = '/userdata/data/$user/where/ever/you/want'&lt;br /&gt;
&lt;br /&gt;
xtiprepare --datadir=$datadir  --prepdir=$prepdir  &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you notice an increased background in the resulting spectra, you&lt;br /&gt;
can apply additional filter criteria during the preparation. See&lt;br /&gt;
'xtiprepare --help' for more information. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Spectrum and Light-curve Extraction:===&lt;br /&gt;
&lt;br /&gt;
To produce light-curves, spectra and apply barycenter correction&lt;br /&gt;
'xtiextract' can be used as follows.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/csh&lt;br /&gt;
&lt;br /&gt;
set prepdir = '/userdata/data/$user/where/ever/you/want'&lt;br /&gt;
set dirname = 'extraction_123'&lt;br /&gt;
&lt;br /&gt;
xtiextract --name=$dirname --prepdir=$prepdir&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The produced spectrum and light-curve can then be found in the&lt;br /&gt;
subdirecory 'dirname' in $prepdir. Currently no observation-specific &lt;br /&gt;
response files are generated, but instead soft links to the current ARF &lt;br /&gt;
&amp;amp; RMF files included in the CALDB are generated.&lt;br /&gt;
&lt;br /&gt;
=== Background generation: ===&lt;br /&gt;
&lt;br /&gt;
As we cannot produce a background spectrum from an off-source region on the&lt;br /&gt;
detector, a background spectrum has to be modeled. Currently there are two&lt;br /&gt;
different tools available for that purpose. One based on external parameters&lt;br /&gt;
during the observation (i.e., space weather, solar angle and cutoff-rigidity of&lt;br /&gt;
earths B-field) amd one based on the internal distribution of measured events.&lt;br /&gt;
Both are still in active development and might not be able to produce realistic&lt;br /&gt;
spectra for all observations. In that case a simple reference observation of one&lt;br /&gt;
of the RXTE background fields might be used instead.  &amp;lt;br /&amp;gt;&lt;br /&gt;
Both tools are further described on the instruments webpage:&amp;lt;br /&amp;gt;&lt;br /&gt;
https://heasarc.gsfc.nasa.gov/docs/nicer/tools/nicer_bkg_est_tools.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Issues to keep in mind:  ===&lt;br /&gt;
&lt;br /&gt;
Feel free to expand this list whenever you came across any new issues.&lt;br /&gt;
&lt;br /&gt;
''' Optical loading: '''&lt;br /&gt;
&lt;br /&gt;
When optical light is reflected onto the detectors, this can&lt;br /&gt;
significantly increase the low-energy background below 3keV. This is&lt;br /&gt;
most significant for solar angles below ~70 degrees. However, due to&lt;br /&gt;
its position on the ISS this can also happen at any solar angle when&lt;br /&gt;
light is reflected by other part of the ISS. &lt;br /&gt;
&lt;br /&gt;
''' Polar Horns: '''&lt;br /&gt;
&lt;br /&gt;
Unlike other observatories in LEO the ISS is on an orbit with a quite&lt;br /&gt;
high inclination of 51.6 degrees.  This means the ISS passes through&lt;br /&gt;
the so called polar horn regions, where the outer Van Allen belt reach&lt;br /&gt;
LEO. These regions can feature an increased population of energetic&lt;br /&gt;
electrons, which can induce a strong background signal in NICER,&lt;br /&gt;
particular at higher energies. &amp;lt;br /&amp;gt;&lt;br /&gt;
See this &amp;quot;science nugget&amp;quot; for more information:&amp;lt;br /&amp;gt;&lt;br /&gt;
https://heasarc.gsfc.nasa.gov/docs/nicer/science_nuggets/20180809.html&lt;br /&gt;
&lt;br /&gt;
''' Overly aggressive filtering: '''&lt;br /&gt;
&lt;br /&gt;
It can happen, that e.g. optical loading leads to a filter parameter&lt;br /&gt;
exceeding the standard filter criteria for most of certain&lt;br /&gt;
observations. &lt;br /&gt;
If that happens you should check the .mkf-file and see whether any of the parameters &lt;br /&gt;
exceeds the default filter criteria specified in the fhelp of nimaketime. &lt;br /&gt;
This can be done e.g. using fplot:&lt;br /&gt;
  fplot *.mkf TIME &amp;quot;FPM_UNDERONLY_COUNT SUN_ANGLE FPM_OVERONLY_COUNT SUNSHINE &amp;quot;&lt;br /&gt;
&lt;br /&gt;
Such an observation might still be of interest, however.&lt;br /&gt;
In that case one might want to increase the allowed range e.g. for&lt;br /&gt;
&amp;quot;underonly_range&amp;quot; in &amp;quot;xtiprepare&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
''' Large event files: '''&lt;br /&gt;
&lt;br /&gt;
The downloaded eventfiles are generally compressed and are extracted to memory &lt;br /&gt;
before the data processing.  This fails for large eventfiles of several GB. &lt;br /&gt;
In this case one has to unzip the file event_cl/niXXXXXXXXXX_0mpu7_ufa.evt.gz &lt;br /&gt;
before running xtiprepare.&lt;br /&gt;
&lt;br /&gt;
''' Active FPMs: '''&lt;br /&gt;
&lt;br /&gt;
NICER has 56 focal-plane modules (FPMs) of which 52 are usually active. For&lt;br /&gt;
different reasons, e.g. annealing, sometimes some FPMs are switched off. And&lt;br /&gt;
sometimes you have excluded certain FPMs because of their increased background&lt;br /&gt;
(especially FPM 14 &amp;amp; 34). In both cases you have to be careful to scale the ARF&lt;br /&gt;
or generate a new one. So one should check the event files how many detectors where&lt;br /&gt;
active during the observation. &amp;lt;br /&amp;gt;&lt;br /&gt;
More info here: https://heasarc.gsfc.nasa.gov/docs/nicer/analysis_threads/arf-rmf/&lt;br /&gt;
&lt;br /&gt;
''' Damage to the optical bench '''&lt;br /&gt;
&lt;br /&gt;
On May 22, 2023, between 13:00 and 14:00 UTC, NICER appears to have developed a &lt;br /&gt;
visible-light leak in the X-ray Timing Instrument (XTI) optical bench. This leads to &lt;br /&gt;
and increase in the undershoot rate, background at soft energies and can lead to &lt;br /&gt;
detectors switching off, telemetry saturation, and spurious timing features.&lt;br /&gt;
This only affects observations performed during orbital days. Night time observations &lt;br /&gt;
are unaffected. &lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
[[Category:Data Extraction]]&lt;/div&gt;</summary>
		<author><name>Thalhammer</name></author>
	</entry>
	<entry>
		<id>https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Nicer&amp;diff=2822</id>
		<title>Nicer</title>
		<link rel="alternate" type="text/html" href="https://www.sternwarte.uni-erlangen.de/wiki/index.php?title=Nicer&amp;diff=2822"/>
		<updated>2023-06-07T10:06:36Z</updated>

		<summary type="html">&lt;p&gt;Thalhammer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== NICER data extraction ==&lt;br /&gt;
&lt;br /&gt;
NICER is a soft X-ray observatory on board the ISS. Biggest difference to many&lt;br /&gt;
other modern X-ray satellites are its silicon drift detectors and X-ray&lt;br /&gt;
concentrators (instead of focusing mirrors), which together do not permit&lt;br /&gt;
imaging capabilities. While this simplifies the data extraction, it is also required  &lt;br /&gt;
to simulate a background for each observation. &amp;lt;br /&amp;gt; Previously downloaded&lt;br /&gt;
NICER observations can be found under /satdata/X-ray/nicer/. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Preparation:=== &lt;br /&gt;
&lt;br /&gt;
To apply the the latest calibration and filtering, first run&lt;br /&gt;
'xtiprepare'.   The script will produce  cleaned event&lt;br /&gt;
files inside the subdirectory 'reprocessed' inside 'prepdir'.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/csh&lt;br /&gt;
&lt;br /&gt;
set datadir = /data/X-ray/nicer/data/2200570101&lt;br /&gt;
set prepdir = '/userdata/data/$user/where/ever/you/want'&lt;br /&gt;
&lt;br /&gt;
xtiprepare --datadir=$datadir  --prepdir=$prepdir  &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you notice an increased background in the resulting spectra, you&lt;br /&gt;
can apply additional filter criteria during the preparation. See&lt;br /&gt;
'xtiprepare --help' for more information. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Spectrum and Light-curve Extraction:===&lt;br /&gt;
&lt;br /&gt;
To produce light-curves, spectra and apply barycenter correction&lt;br /&gt;
'xtiextract' can be used as follows.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/csh&lt;br /&gt;
&lt;br /&gt;
set prepdir = '/userdata/data/$user/where/ever/you/want'&lt;br /&gt;
set dirname = 'extraction_123'&lt;br /&gt;
&lt;br /&gt;
xtiextract --name=$dirname --prepdir=$prepdir&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The produced spectrum and light-curve can then be found in the&lt;br /&gt;
subdirecory 'dirname' in $prepdir. Currently no observation-specific &lt;br /&gt;
response files are generated, but instead soft links to the current ARF &lt;br /&gt;
&amp;amp; RMF files included in the CALDB are generated.&lt;br /&gt;
&lt;br /&gt;
=== Background generation: ===&lt;br /&gt;
&lt;br /&gt;
As we cannot produce a background spectrum from an off-source region on the&lt;br /&gt;
detector, a background spectrum has to be modeled. Currently there are two&lt;br /&gt;
different tools available for that purpose. One based on external parameters&lt;br /&gt;
during the observation (i.e., space weather, solar angle and cutoff-rigidity of&lt;br /&gt;
earths B-field) amd one based on the internal distribution of measured events.&lt;br /&gt;
Both are still in active development and might not be able to produce realistic&lt;br /&gt;
spectra for all observations. In that case a simple reference observation of one&lt;br /&gt;
of the RXTE background fields might be used instead.  &amp;lt;br /&amp;gt;&lt;br /&gt;
Both tools are further described on the instruments webpage:&amp;lt;br /&amp;gt;&lt;br /&gt;
https://heasarc.gsfc.nasa.gov/docs/nicer/tools/nicer_bkg_est_tools.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Issues to keep in mind:  ===&lt;br /&gt;
&lt;br /&gt;
Feel free to expand this list whenever you came across any new issues.&lt;br /&gt;
&lt;br /&gt;
''' Optical loading: '''&lt;br /&gt;
&lt;br /&gt;
When optical light is reflected onto the detectors, this can&lt;br /&gt;
significantly increase the low-energy background below 3keV. This is&lt;br /&gt;
most significant for solar angles below ~70 degrees. However, due to&lt;br /&gt;
its position on the ISS this can also happen at any solar angle when&lt;br /&gt;
light is reflected by other part of the ISS. &lt;br /&gt;
&lt;br /&gt;
''' Polar Horns: '''&lt;br /&gt;
&lt;br /&gt;
Unlike other observatories in LEO the ISS is on an orbit with a quite&lt;br /&gt;
high inclination of 51.6 degrees.  This means the ISS passes through&lt;br /&gt;
the so called polar horn regions, where the outer Van Allen belt reach&lt;br /&gt;
LEO. These regions can feature an increased population of energetic&lt;br /&gt;
electrons, which can induce a strong background signal in NICER,&lt;br /&gt;
particular at higher energies. &amp;lt;br /&amp;gt;&lt;br /&gt;
See this &amp;quot;science nugget&amp;quot; for more information:&amp;lt;br /&amp;gt;&lt;br /&gt;
https://heasarc.gsfc.nasa.gov/docs/nicer/science_nuggets/20180809.html&lt;br /&gt;
&lt;br /&gt;
''' Overly aggressive filtering: '''&lt;br /&gt;
&lt;br /&gt;
It can happen, that e.g. optical loading leads to a filter parameter&lt;br /&gt;
exceeding the standard filter criteria for most of certain&lt;br /&gt;
observations. &lt;br /&gt;
If that happens you should check the .mkf-file and see whether any of the parameters &lt;br /&gt;
exceeds the default filter criteria specified in the fhelp of nimaketime. &lt;br /&gt;
This can be done e.g. using fplot:&lt;br /&gt;
  fplot *.mkf TIME &amp;quot;FPM_UNDERONLY_COUNT SUN_ANGLE FPM_OVERONLY_COUNT SUNSHINE &amp;quot;&lt;br /&gt;
&lt;br /&gt;
Such an observation might still be of interest, however.&lt;br /&gt;
In that case one might want to increase the allowed range e.g. for&lt;br /&gt;
&amp;quot;underonly_range&amp;quot; in &amp;quot;xtiprepare&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
''' Large event files: '''&lt;br /&gt;
&lt;br /&gt;
The downloaded eventfiles are generally compressed and are extracted to memory &lt;br /&gt;
before the data processing.  This fails for large eventfiles of several GB. &lt;br /&gt;
In this case one has to unzip the file event_cl/niXXXXXXXXXX_0mpu7_ufa.evt.gz &lt;br /&gt;
before running xtiprepare.&lt;br /&gt;
&lt;br /&gt;
''' Active FPMs: '''&lt;br /&gt;
&lt;br /&gt;
NICER has 56 focal-plane modules (FPMs) of which 52 are usually active. For&lt;br /&gt;
different reasons, e.g. annealing, sometimes some FPMs are switched off. And&lt;br /&gt;
sometimes you have excluded certain FPMs because of their increased background&lt;br /&gt;
(especially FPM 14 &amp;amp; 34). In both cases you have to be careful to scale the ARF&lt;br /&gt;
or generate a new one. So one should check the event files how many detectors where&lt;br /&gt;
active during the observation. &amp;lt;br /&amp;gt;&lt;br /&gt;
More info here: https://heasarc.gsfc.nasa.gov/docs/nicer/analysis_threads/arf-rmf/&lt;br /&gt;
&lt;br /&gt;
''' Damage to the optical bench '''&lt;br /&gt;
On May 22, 2023, between 13:00 and 14:00 UTC, NICER appears to have developed a &lt;br /&gt;
visible-light leak in the X-ray Timing Instrument (XTI) optical bench. This leads to &lt;br /&gt;
and increase in the undershoot rate, background at soft energies and can lead to &lt;br /&gt;
detectors switching off, telemetry saturation, and spurious timing features.&lt;br /&gt;
This only affects observations performed during orbital days. Night time observations &lt;br /&gt;
are unaffected. &lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
[[Category:Data Extraction]]&lt;/div&gt;</summary>
		<author><name>Thalhammer</name></author>
	</entry>
</feed>