.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "auto_examples/end_to_end/plot_phase_gif.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_end_to_end_plot_phase_gif.py: Make a phase curve GIF ====================== This example turns a phase curve into a gif. .. GENERATED FROM PYTHON SOURCE LINES 7-28 .. code-block:: Python from pathlib import Path import os import numpy as np import matplotlib.pyplot as plt from astropy import units as u from imageio.v2 import imread, mimsave from cartopy import crs as ccrs import libpypsg from libpypsg.globes import PyGCM from VSPEC import ObservationModel,PhaseAnalyzer from VSPEC.geometry import SystemGeometry try: CONFIG_PATH = Path(__file__).parent / 'phase_gif.yaml' except NameError: CONFIG_PATH = Path('phase_gif.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 29-33 Load in the configuration ------------------------- It is stored in a YAML file. .. GENERATED FROM PYTHON SOURCE LINES 33-38 .. code-block:: Python model = ObservationModel.from_yaml(CONFIG_PATH) model.build_planet() model.build_spectra() .. rst-class:: sphx-glr-script-out .. code-block:: none Starting at phase 0.0 deg, observe for 10.0 d in 120 steps Phases = [ 0. 3. 6. 9. 12. 15. 18. 21. 24. 27. 30. 33. 36. 39. 42. 45. 48. 51. 54. 57. 60. 63. 66. 69. 72. 75. 78. 81. 84. 87. 90. 93. 96. 99. 102. 105. 108. 111. 114. 117. 120. 123. 126. 129. 132. 135. 138. 141. 144. 147. 150. 153. 156. 159. 162. 165. 168. 171. 174. 177. 180. 183. 186. 189. 192. 195. 198. 201. 204. 207. 210. 213. 216. 219. 222. 225. 228. 231. 234. 237. 240. 243. 246. 249. 252. 255. 258. 261. 264. 267. 270. 273. 276. 279. 282. 285. 288. 291. 294. 297. 300. 303. 306. 309. 312. 315. 318. 321. 324. 327. 330. 333. 336. 339. 342. 345. 348. 351. 354. 357. 0.] deg Build Planet: 0%| | 0/121 [00:00` .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: plot_phase_gif.py ` .. container:: sphx-glr-download sphx-glr-download-zip :download:`Download zipped: plot_phase_gif.zip ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_