leejjoon / pysao

python wrapper of sao XPA library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

pysao
=====

This project is aimed to provide a python interface for some programs
developed by Smithsonian Astrophysical Observatory(SAO). One of the
main goal is to communicate with ds9 from python shell via the XPA
protocol. It provides a python wrapper for subset of XPA library and
python module for ds9 based on the XPA module.

Homepage : http://leejjoon.github.com/pyregion/

pyregion is "easy_install"able.

http://pypi.python.org/pypi/pysao

```
pip install pysao
```

USAGE
=====


```python
>>> import pysao

# run new instance of ds9
>>> ds9 = pysao.ds9()

>>> import numpy
>>> im = numpy.reshape(numpy.arange(100), (10, 10))
# display 2-d array
>>> ds9.view(im)



>>> import pyfits
>>> f = pyfits.open('test.fits')
# display first extension of fits file
>>> ds9.view(f[0])

# access with XPA method. 
>>> ds9.set('file test.fits')
>>> ds9.get('file')

# list available xpa commands
>>> ds9.xpa_help()

# help on the specific xpa command
>>> ds9.xpa_help("tile")
```

About

python wrapper of sao XPA library

License:Other


Languages

Language:C 44.6%Language:Roff 24.8%Language:HTML 14.2%Language:M4 5.9%Language:Python 5.8%Language:Shell 2.6%Language:Makefile 1.2%Language:Tcl 0.6%Language:C++ 0.2%