-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex_backup
76 lines (44 loc) · 2.32 KB
/
index_backup
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
.. DaViTPy documentation master file, created by
sphinx-quickstart on Thu Sep 20 13:54:36 2012.
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.
Welcome to DaViTpy's documentation
##################################
DaViTpy is the SuperDARN Data Visualization Toolkit in Python. This documentation is as thorough as we could make it, but if you are still looking for more information, consider visiting the following sites.
* `Project page <http://vtsuperdarn.github.com/davitpy>`_
* `Github page <https://github.com/vtsuperdarn/davitpy>`_
* `Project wiki <https://github.com/vtsuperdarn/davitpy/wiki>`_
Contents
========
* :doc:`pydarn` : SuperDARN data analysis and visualization. Includes radar data access, radar information and fields-of-view, and standard plotting tools.
* :doc:`gme` : Geomagnetic Environement module. Includes access to other space science data-sets (POES, OMNI, TEC, ...).
* :doc:`models` : Useful models. Incudes empirical models (IRI, MSIS, HWM, ...), coordinate systems (AACGM, MLT), and ray-tracing. Note that most of these routines are in C and Fortran, and do not get auto-documented. To see documentation and example of their use, see :doc:`notebooks`.
* :doc:`utils` : Useful formatting and plotting tools, as well as a solar position calculator.
* :doc:`notebooks` : Some examples of how to use DaViTpy (IPython notebooks).
.. note:: This project is hosted on github, and we sincerely invite your to contribute!
Modules
========
.. toctree::
:maxdepth: 1
pydarn
gme
models
utils
Indices and tables
==================
* :ref:`genindex`
* :ref:`modindex`
* :ref:`search`
Install
========
Install instructions can be found on the `github page <https://github.com/vtsuperdarn/davitpy>`_ or in README.md.
Updates
========
We will announce stable releases once or twice a year, with instructions on how to get them. However, should you want to, you can get the development version by following these instructions:
.. code-block:: bash
cd $DAVITPY
# Check if you have any modified files
git status
# Pull updates
git pull origin master
If you have any modified filed that you would like to keep, stage or commit your changes before pulling (see the `git manual <http://git-scm.com/documentation>`_ for help).