-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from andrewpaulreeves/master
Updates for 0.2
- Loading branch information
Showing
10 changed files
with
29 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
from .astronomy import * | ||
from ._astronomy import * |
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
aotools/turbulence/opticalpropagation.py → aotools/opticalpropagation.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
from .phasescreen import * | ||
from .infinitephasescreen import * | ||
from .temporal_ps import * | ||
from .opticalpropagation import * | ||
from .slopecovariance import * | ||
from .turb import * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,7 @@ Contents: | |
fft | ||
wfs | ||
zernike | ||
opticalpropagation | ||
|
||
Indices and tables | ||
================== | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,18 @@ | ||
AOtools | ||
======= | ||
Introduction | ||
============ | ||
|
||
AOtools is an attempt to gather together many common tools, equations and functions for Adaptive Optics. | ||
The idea is to provide an alternative to the current model, where a new AO researcher must write their own library | ||
of tools, many of which implement theory and ideas that have been in existance for over 20 years. AOtools will hopefully | ||
provide a common place to put these tools, which through use and bug fixes, should become reliable and well documented. | ||
provide a common place to put these tools, which through use and bug fixes, should become reliable and well documented. | ||
|
||
Installation | ||
------------ | ||
AOtools uses mainly standard library functions, and all attempts have been made to avoid adding unneccessary dependencies. | ||
Currently, the library requires only | ||
|
||
- numpy | ||
- scipy | ||
- astropy | ||
- matplotlib | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Optical Propagation | ||
=================== | ||
|
||
.. automodule:: aotools.opticalpropagation | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters