API reference

Types

Macros

Functions

Base.getMethod
get(f::FITS, name::AbstractString, default::Integer) -> HDU

See also get.

source
Base.readFunction
read(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.

source
Base.readFunction
read(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.

source
Base.readFunction
read(t::EitherTableHDU, DataFrame,
	colnames::AbstractVector{<:SymOrStr} = FITSIO.colnames(t)) -> DataFrame

Read a DataFrame from the given table (of type ASCIITableHDU or TableHDU).

source