API reference
FITSIOExt.FITSIOExt
— ModuleFITSIOExt
FITSIODataFramesExt.FITSIODataFramesExt
— ModuleFITSIODataFramesExt
Types
FITSIO.EitherTableHDU
— TypeEitherTableHDU <- Union{ASCIITableHDU, TableHDU}
FITSIO.HDU
— TypeHDU <- Union{ImageHDU, ASCIITableHDU, TableHDU}
Macros
Functions
Base.get
— Methodget(f::FITS, name::AbstractString, default::Integer) -> HDU
See also get
.
Base.read
— Functionread(t::EitherTableHDU, Vector,
colnames::AbstractVector{<:SymOrStr} = FITSIO.colnames(t)) -> Vector
Read a Vector of columns from the given table (of type ASCIITableHDU
or TableHDU
). Each column is of type AbstractVector
(more specifically, either Vector
or AbstractSlices{S, 1} where S
).
See also Slices
.
Base.read
— Functionread(t::EitherTableHDU, Vector{Array},
colnames::AbstractVector{<:SymOrStr} = FITSIO.colnames(t)) -> Vector
Read a Vector of columns from the given table (of type ASCIITableHDU
or TableHDU
). Each column is of type Array
.
Base.read
— Functionread(t::EitherTableHDU, DataFrame,
colnames::AbstractVector{<:SymOrStr} = FITSIO.colnames(t)) -> DataFrame
Read a DataFrame from the given table (of type ASCIITableHDU
or TableHDU
).