diff --git a/docs/src/index.md b/docs/src/index.md index 2355e36..156b5c5 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -13,20 +13,46 @@ Pkg.add("NCTools") ``` ```@docs -nc_info -ncdim_def +nc_open +nc_cellsize + +Base.getindex + +NCTools.NcDim +NCTools.ncdim_def +NCTools.make_dims + ncvar_def +ncatt_put ``` -```docs +```@docs nc_read nc_write +nc_write! ``` + ## Utilities ```@docs +QDM +bilinear + nc_aggregate +nc_aggregate_dir + nc_combine nc_subset ``` + + +## CMIP functions + +```@docs +CMIP.Tem_F2C +CMIP.heat_index + +CMIP.get_model +CMIP.CMIPFiles_info +``` diff --git a/src/ncvar_def.jl b/src/ncvar_def.jl index c165321..5f25c38 100644 --- a/src/ncvar_def.jl +++ b/src/ncvar_def.jl @@ -55,7 +55,7 @@ close(ds) nc_info(f) ``` -@seealso [ncdim_def](ref) +@seealso [`ncdim_def`](@ref) """ function ncvar_def(ds, name, val, dims::Vector{<:AbstractString}, attrib=Dict(); compress=1, type=nothing, kwargs...)