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 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
|
.. _cosmology_io_builtin:
**********************************
Built-in Cosmology To/From Formats
**********************************
To see the a list of the available conversion formats:
.. code-block:: python
>>> from astropy.cosmology import Cosmology
>>> Cosmology.to_format.list_formats()
Format Read Write Auto-identify
----------------- ---- ----- -------------
astropy.cosmology Yes Yes Yes
astropy.model Yes Yes Yes
astropy.row Yes Yes Yes
astropy.table Yes Yes Yes
mapping Yes Yes Yes
yaml Yes Yes No
.. _cosmology_io_builtin-cosmology:
Cosmology
*********
.. automodule:: astropy.cosmology._io.cosmology
.. _cosmology_io_builtin-mapping:
Mapping
*******
.. automodule:: astropy.cosmology._io.mapping
.. _cosmology_io_builtin-table:
Table
*****
.. automodule:: astropy.cosmology._io.table
.. _cosmology_io_builtin-model:
Model
*****
.. automodule:: astropy.cosmology._io.model
.. _cosmology_io_builtin-yaml:
YAML
****
.. automodule:: astropy.cosmology._io.yaml
.. _cosmology_io_builtin-row:
Row
***
.. automodule:: astropy.cosmology._io.row
*************************************
Built-in Cosmology Read/Write Formats
*************************************
To see a list of the available read/write file formats:
>>> from astropy.cosmology import Cosmology
>>> Cosmology.write.list_formats()
Format Read Write Auto-identify
----------- ---- ----- -------------
ascii.ecsv Yes Yes Yes
ascii.html Yes Yes Yes
ascii.latex No Yes Yes
.. _cosmology_io_builtin-ecsv:
ECSV
****
.. automodule:: astropy.cosmology._io.ecsv
.. _cosmology_io_builtin-latex:
LaTeX
*****
.. automodule:: astropy.cosmology._io.latex
.. _cosmology_io_builtin-html:
HTML
****
.. automodule:: astropy.cosmology._io.html
|