Skip to content

Commit

Permalink
Merge pull request #193 from nden/fix-method-doc
Browse files Browse the repository at this point in the history
fix method call signature in documentation
  • Loading branch information
nden committed Feb 12, 2023
2 parents a6baac9 + 36ad884 commit 81ea46e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ jobs:
fail-fast: false
matrix:
include:
- name: Python 3.10.0
- name: Python 3.10
runs-on: ubuntu-latest
python-version: '3.10.0'
python-version: '3.10'
toxenv: py310

- name: Python 3.9
Expand Down
6 changes: 3 additions & 3 deletions doc/source/hstwcs_ui.rst
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ of the first image pixel is (0,0).

- Apply the entire detector to sky transformation at once:

``outpix=w1.all_pix2sky(inpix,1)``
``outpix = w1.all_pix2world(inpix, 1)``

``outpix=w1.all_pix2sky(X, Y,1)``
``outpix = w1.all_pix2world(X, Y, 1)``

- The same transformation can be done in separate steps:

Expand All @@ -78,4 +78,4 @@ of the first image pixel is (0,0).

``wpix = w.wcs_pix2sky(fpix, 1)``



0 comments on commit 81ea46e

Please sign in to comment.