Skip to content

Commit 533d10d

Browse files
committed
correction on readme
1 parent bba4ea9 commit 533d10d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ Let's start by creating an Elodie instance by passing an object name:
2020
```python
2121
import stelspec as sp
2222

23-
el = Elodie('HD217014')
23+
el = sp.Elodie('HD217014')
2424
```
2525

26-
You can access two tables, ccf and Spectra, as pandas DataFrame.
26+
You can access two tables, CCF and Spectra, as pandas DataFrame.
2727

2828
```python
2929
# table: Cross-Correlation Functions
@@ -46,4 +46,4 @@ el.get_spec(dataset=19960831, imanum='0017', path='data/', s1d=Flase)
4646
The same process can be done for Sophie, except that instead of *dataset* and
4747
*imanum*, you should pass the *seq* number.
4848

49-
For a brief help the structure of FITS files, see [ELODIE](http://atlas.obs-hp.fr/elodie/500/download.html) and [SOPHIE](http://atlas.obs-hp.fr/sophie/spec_help.html).
49+
For a brief help on the structure of FITS files, see [ELODIE](http://atlas.obs-hp.fr/elodie/500/download.html) and [SOPHIE](http://atlas.obs-hp.fr/sophie/spec_help.html).

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="stelspec",
8-
version="0.0.4",
8+
version="0.0.5",
99
author="Behrouz Safari",
1010
author_email="behrouz.safari@gmail.com",
1111
description="A python package for retrieving and analysing stellar spectra (ELODIE-SOPHIE Archive)",

stelspec/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from .core import Elodie, Sophie
22
from .columns import desc_el_ccf, desc_el_spec, desc_so_ccf, desc_so_spec
33

4-
__version__ = "0.0.4"
4+
__version__ = "0.0.5"

0 commit comments

Comments
 (0)