Skip to content

Commit

Permalink
Merge pull request #15 from jmbhughes/master
Browse files Browse the repository at this point in the history
Fixes typos and dead link
  • Loading branch information
giordano authored Sep 26, 2024
2 parents b655e9d + b3767ef commit db44848
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Example
```
julia> using Reproject, FITSIO
julia> input_data = FITS("gc_msx_e.fits)
julia> input_data = FITS("gc_msx_e.fits")
julia> output_projection = FITS("gc_2mass_k.fits")
Expand All @@ -62,7 +62,7 @@ julia> result = reproject(input_data, output_projection, shape_out = (1000,1000)

<img name="community" src="Images/output.png"/>

Test files can be obtained from [here](https://astropy.stsci.edu/data/).
Test files can be obtained from [here](https://www.astropy.org/astropy-data/).

Related Packages
-------
Expand Down
2 changes: 1 addition & 1 deletion src/core.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Reprojects image data to a new projection using interpolation.
1: Linear
2: Quadratic
- `hdu_in`: Used to specify HDU number when giving input as FITS or name of FITS file.
- `hud_out:` Used to specify HDU number when giving output projection as FITS or name of FITS file.
- `hdu_out:` Used to specify HDU number when giving output projection as FITS or name of FITS file.
"""
function reproject(input_data, output_projection; shape_out = nothing, order::Int = 1, hdu_in::Int = 1, hdu_out::Int = 1)
if input_data isa ImageHDU || input_data isa Tuple{AbstractArray, WCSTransform}
Expand Down

0 comments on commit db44848

Please sign in to comment.