Skip to content

Commit db44848

Browse files
authored
Merge pull request #15 from jmbhughes/master
Fixes typos and dead link
2 parents b655e9d + b3767ef commit db44848

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Example
4848
```
4949
julia> using Reproject, FITSIO
5050
51-
julia> input_data = FITS("gc_msx_e.fits)
51+
julia> input_data = FITS("gc_msx_e.fits")
5252
5353
julia> output_projection = FITS("gc_2mass_k.fits")
5454
@@ -62,7 +62,7 @@ julia> result = reproject(input_data, output_projection, shape_out = (1000,1000)
6262

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

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

6767
Related Packages
6868
-------

src/core.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Reprojects image data to a new projection using interpolation.
1414
1: Linear
1515
2: Quadratic
1616
- `hdu_in`: Used to specify HDU number when giving input as FITS or name of FITS file.
17-
- `hud_out:` Used to specify HDU number when giving output projection as FITS or name of FITS file.
17+
- `hdu_out:` Used to specify HDU number when giving output projection as FITS or name of FITS file.
1818
"""
1919
function reproject(input_data, output_projection; shape_out = nothing, order::Int = 1, hdu_in::Int = 1, hdu_out::Int = 1)
2020
if input_data isa ImageHDU || input_data isa Tuple{AbstractArray, WCSTransform}

0 commit comments

Comments
 (0)