Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
Trac #31324: documentation on atlas behavior of spherical coordinates
Browse files Browse the repository at this point in the history
  • Loading branch information
mjungmath committed Feb 14, 2021
1 parent 8453ffb commit 4358faf
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions src/sage/manifolds/differentiable/examples/sphere.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,14 +80,15 @@
S^2_r --> R
on A: (theta, phi) |--> r^(-2)
As we have seen, spherical coordinates are initialized by default. To
initialize stereographic coordinates retrospectively, we can use the following
command::
By default, spheres are initialized with spherical coordinates. Even though
spherical coordinates are internally defined periodically, they do not
constitute a full atlas in the mathematical sense. To retrospectively
initialize stereographic coordinates, we can use the following command::
sage: S2_r.stereographic_coordinates()
Chart (S^2_r-{NP}, (y1, y2))
To get all charts corresponding to stereographic coordinates, we can use the
To return the full atlas constituted by stereographic coordinates, we can use the
:meth:`~sage.manifolds.differentiable.examples.sphere.Sphere.coordinate_charts`::
sage: stereoN, stereoS = S2_r.coordinate_charts('stereographic')
Expand Down Expand Up @@ -810,6 +811,15 @@ def spherical_coordinates(self, names=None):
above ensures that the conventions for the most common cases
`n=1` and `n=2` are maintained.
.. WARNING::
Even though spherical coordinates are internally defined as
periodic, keep noticed that they are,
in a mathematical sense, only defined on
the open subset `A` and do *not* cover the whole sphere
`\mathbb{S}^n_r(c)`. To get charts leading to a fully defined atlas,
use :meth:`Sphere.stereographic_coordinates` instead.
EXAMPLES:
The spherical coordinates on a 2-sphere follow the common conventions::
Expand Down

0 comments on commit 4358faf

Please sign in to comment.