Skip to content

Commit ae3502a

Browse files
authored
Merge pull request #39 from JuliaAstro/ml/WCS-7
2 parents a5d6f45 + 5a4d460 commit ae3502a

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
name = "WCS"
22
uuid = "15f3aee2-9e10-537f-b834-a6fb8bdb944d"
3-
version = "0.5.1"
3+
version = "0.6.0"
44

55
[deps]
66
WCS_jll = "550c8279-ae0e-5d1b-948f-937f2608a23e"
77

88
[compat]
9-
WCS_jll = "6.4"
9+
WCS_jll = "7"
1010
julia = "1.3"

src/WCS.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -366,6 +366,7 @@ mutable struct WCSTransform
366366
zsource::Cdouble
367367
ssyssrc::NTuple{72,UInt8}
368368
velangl::Cdouble
369+
aux::Ptr{Cvoid} # Ptr{auxprm}
369370
ntab::Cint
370371
nwtb::Cint
371372
tab::Ptr{Cvoid} # Ptr{tabprm}
@@ -399,6 +400,7 @@ mutable struct WCSTransform
399400
m_csyer::Ptr{Cdouble}
400401
m_czphs::Ptr{Cdouble}
401402
m_cperi::Ptr{Cdouble}
403+
m_aux::Ptr{Cvoid} # Ptr{auxprm}
402404
m_tab::Ptr{Cvoid} # Ptr{tabprm}
403405
m_wtb::Ptr{Cvoid} # Ptr{wtbarr}
404406

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ end
6868
# between minor WCSLIB versions. For example,
6969
# `0.0E+00` vs `0.000E+00`.)
7070
header_out = WCS.to_header(w)
71-
@test length(header_out) == 17 * 80
71+
@test length(header_out) == 18 * 80
7272

7373
# test relax keyword
7474
faulty_header = replace(header, "RADESYS = 'ICRS'" => "RADECSYS= 'FK5' ")

0 commit comments

Comments
 (0)