diff options
author | mdroe <mdroe@stsci.edu> | 2012-06-01 14:50:53 -0400 |
---|---|---|
committer | mdroe <mdroe@stsci.edu> | 2012-06-01 14:50:53 -0400 |
commit | dead44d3663918173834ef6d8b26948d1776da43 (patch) | |
tree | e91c4a9e82826eb5af4020f0c98e2fd32b594cbf /lib/great_circle_arc.py | |
parent | e36ec1d99f74022625c387105b81d2469eb6f3ed (diff) | |
download | stsci.sphere-dead44d3663918173834ef6d8b26948d1776da43.tar.gz |
Fix typo in docs
git-svn-id: http://svn.stsci.edu/svn/ssb/stsci_python/stsci_python/branches/sphere@17197 fe389314-cf27-0410-b35b-8c050e845b92
Former-commit-id: ff32480b3a43d8507e537e843cfa3f4bd6b6c9e0
Diffstat (limited to 'lib/great_circle_arc.py')
-rw-r--r-- | lib/great_circle_arc.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/great_circle_arc.py b/lib/great_circle_arc.py index 4684850..682f9d9 100644 --- a/lib/great_circle_arc.py +++ b/lib/great_circle_arc.py @@ -212,7 +212,7 @@ def length(A, B, degrees=True): .. math:: - \Delta = \arccos(A ยท B) + \Delta = \arccos(A \dot B) """ A = np.asanyarray(A) B = np.asanyarray(B) @@ -325,7 +325,7 @@ def interpolate(A, B, steps=50): Parameters ---------- A, B : (*x*, *y*, *z*) triples or Nx3 arrays of triples - The endpoints of the great circle arc. It is assumed that + The endpoints of the great circle arc. It is assumed thats these points are already normalized. steps : int |