Skip to content

Commit

Permalink
Merge branch 'master' into orbitanim
Browse files Browse the repository at this point in the history
  • Loading branch information
jobovy committed Oct 5, 2017
2 parents a8771d8 + eccd128 commit 1837bca
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 12 deletions.
4 changes: 2 additions & 2 deletions doc/source/conf.py
Expand Up @@ -45,9 +45,9 @@
# built documents.
#
# The short X.Y version.
version = '1.2'
version = '1.3'
# The full version, including alpha/beta/rc tags.
release = '1.2'
release = '1.3.dev'
on_rtd = os.environ.get('READTHEDOCS', None) == 'True'
if on_rtd:
version= 'v'+version
Expand Down
8 changes: 6 additions & 2 deletions doc/source/index.rst
Expand Up @@ -219,10 +219,14 @@ The following is a list of publications using ``galpy``; please let me (bovy at
Uses ``galpy.orbit`` integration in a custom Milky-Way-like potential built from ``galpy.potential`` models to investigate the orbits of hypervelocity-star candidates in *Gaia* DR1.
#. *GalRotpy: an educational tool to understand and parametrize the rotation curve and gravitational potential of disk-like galaxies*, Andrés Granados, Lady-J. Henao-O., Santiago Vanegas, & Leonardo Castañeda (2017; `arXiv/1705.01665 <http://arxiv.org/abs/1705.01665>`_):
These authors build an interactive tool to decompose observed rotation curves into bulge, disk (Miyamoto-Nagai or exponential), and NFW halo components on top of ``galpy.potential`` routines.
#. *The AMBRE Project: formation and evolution of the Milky Way disc*, V. Grisoni, E. Spitoni, F. Matteucci, A. Recio-Blanco, P. de Laverny, M. Hayden, S. Mikolaitis, & C. C. Worley (2017; `arXiv/1706.02614 <http://arxiv.org/abs/1706.02614>`_):
#. *The AMBRE Project: formation and evolution of the Milky Way disc*, V. Grisoni, E. Spitoni, F. Matteucci, A. Recio-Blanco, P. de Laverny, M. Hayden, S. Mikolaitis, & C. C. Worley (2017) *Mon. Not. Roy. Astron. Soc.*, in press (`arXiv/1706.02614 <http://arxiv.org/abs/1706.02614>`_):
Uses ``galpy`` to compute orbital parameters for stars in the AMBRE sample of high-resolution spectra and uses these orbital parameters to aid in the comparison between the data and chemical-evolution models.
#. *Detailed chemical abundance analysis of the thick disk star cluster Gaia 1*, Andreas Koch, Terese T. Hansen, & Andrea Kunder (2017; `arXiv/1709.04022 <http://arxiv.org/abs/1709.04022>`_):
#. *Detailed chemical abundance analysis of the thick disk star cluster Gaia 1*, Andreas Koch, Terese T. Hansen, & Andrea Kunder (2017) *Astron. & Astrophys.*, in press (`arXiv/1709.04022 <http://arxiv.org/abs/1709.04022>`_):
Employs ``galpy.orbit`` integration to compute the orbits of four red-giant members of the *Gaia 1* Milky Way star cluster, finding that the orbits of these stars are similar to those of the oldest stars in the Milky Way's disk.
#. *Proper motions in the VVV Survey: Results for more than 15 million stars across NGC 6544*, R. Contreras Ramos, M. Zoccali, F. Rojas, A. Rojas-Arriagada, M. Gárate, P. Huijse, F. Gran, M. Soto, A.A.R. Valcarce, P. A. Estévez, & D. Minniti (2017) *Astron. & Astrophys.*, in press (`arXiv/1709.07919 <http://arxiv.org/abs/1709.07919>`_):
Uses ``galpy.orbit`` integration in ``MWPotential2014`` to calculate the orbit of NGC 6544, a Milky-Way globular cluster, using a newly determined proper motion, finding that it is likely a halo globular cluster based on its orbit.
#. *How to make a mature accreting magnetar*, A. P. Igoshev & S. B. Popov (2017) *Mon. Not. Roy. Astron. Soc.*, in press (`arXiv/1709.10385 <http://arxiv.org/abs/1709.10385>`_):
Employs ``galpy.orbit`` integration of the magnetar candidate 4U 0114+65 in the potential model from `Irrgang et al. (2013) <http://adsabs.harvard.edu/abs/2013A%26A...549A.137I>`__ to aid in the determination of its likely age.

Indices and tables
==================
Expand Down
2 changes: 1 addition & 1 deletion doc/source/installation.rst
Expand Up @@ -189,7 +189,7 @@ of configuration variables. This configuration file is parsed using
<https://docs.python.org/3/library/configparser.html>`__. It is
currently used to set a default set of distance and velocity scales
(``ro`` and ``vo`` throughout galpy) for conversion between physical
and internal galpy units, to decide whether to change the seaborn plotting defaults, to specify whether output from functions or
and internal galpy units, to decide whether to use seaborn plotting with galpy's defaults (which affects *all* plotting after importing ``galpy.util.bovy_plot``), to specify whether output from functions or
methods should be given as an `astropy Quantity
<http://docs.astropy.org/en/stable/api/astropy.units.Quantity.html>`__
with units as much as possible or not, and whether or not to use
Expand Down
2 changes: 1 addition & 1 deletion galpy/__init__.py
@@ -1 +1 @@
__version__ = "1.2"
__version__ = "1.3.dev"
10 changes: 5 additions & 5 deletions galpy/util/bovy_plot.py
Expand Up @@ -60,11 +60,11 @@
from matplotlib.transforms import Affine2D, Bbox, IdentityTransform
from mpl_toolkits.mplot3d import Axes3D
from galpy.util.config import __config__
try:
import seaborn as sns
except: pass
else:
if __config__.getboolean('plot','seaborn-bovy-defaults'):
if __config__.getboolean('plot','seaborn-bovy-defaults'):
try:
import seaborn as sns
except: pass
else:
sns.set_style('ticks',
{'xtick.direction': u'in',
'ytick.direction': u'in',
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -264,7 +264,7 @@
actionAngleTorus_c_incl= False

setup(name='galpy',
version='1.2',
version='1.3.dev',
description='Galactic Dynamics in python',
author='Jo Bovy',
author_email='bovy@astro.utoronto.ca',
Expand Down

0 comments on commit 1837bca

Please sign in to comment.