.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "auto_examples/other/star/plot_spot_lightcurve.py" .. LINE NUMBERS ARE GIVEN BELOW. .. only:: html .. note:: :class: sphx-glr-download-link-note :ref:`Go to the end ` to download the full example code. .. rst-class:: sphx-glr-example-title .. _sphx_glr_auto_examples_other_star_plot_spot_lightcurve.py: Plot the lightcurve of a spotted star ===================================== This example plots the lightcurve caused by a spotted photosphere. .. GENERATED FROM PYTHON SOURCE LINES 8-22 .. code-block:: Python from pathlib import Path from astropy import units as u import matplotlib.pyplot as plt import libpypsg from VSPEC import ObservationModel,PhaseAnalyzer try: CFG_PATH = Path(__file__).parent / 'spot_lightcurve.yaml' except NameError: CFG_PATH = 'spot_lightcurve.yaml' libpypsg.docker.set_url_and_run() .. rst-class:: sphx-glr-script-out .. code-block:: none Saved settings to /home/runner/.libpypsg/settings.json Reloading settings... .. GENERATED FROM PYTHON SOURCE LINES 23-27 Initialize the VSPEC run ------------------------ We read in the config file and run the model. .. GENERATED FROM PYTHON SOURCE LINES 27-32 .. code-block:: Python model = ObservationModel.from_yaml(CFG_PATH) model.build_planet() model.build_spectra() .. rst-class:: sphx-glr-script-out .. code-block:: none /opt/hostedtoolcache/Python/3.11.10/x64/lib/python3.11/site-packages/VSPEC/main.py:89: RuntimeWarning: Planet sampling is too low (4.00 d > 1.25 d) warnings.warn(msg, RuntimeWarning) Starting at phase 0.0 deg, observe for 40.0 d in 10 steps Phases = [ 0. 144. 288. 72. 216. 0. 144. 288. 72. 216. 0.] deg Build Planet: 0%| | 0/11 [00:00` .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: plot_spot_lightcurve.py ` .. container:: sphx-glr-download sphx-glr-download-zip :download:`Download zipped: plot_spot_lightcurve.zip ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_