From ae009aed507b7d399b525505c1eb9dcb9701dab6 Mon Sep 17 00:00:00 2001 From: Lazaro Alonso Date: Fri, 18 Oct 2024 11:24:59 +0200 Subject: [PATCH 1/2] some details in hero --- docs/src/index.md | 56 ++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 55 insertions(+), 1 deletion(-) diff --git a/docs/src/index.md b/docs/src/index.md index e653fe1e..42f187a8 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -27,10 +27,64 @@ features: link: /UserGuide/read - title: Interoperability details: Well integrated with Julia's ecosystem, i.e., distributed operations are native. And plotting with Makie.jl is well supported. + link: /tutorials/plottingmaps - title: Named dimensions and GroupBy(in memory) details: Apply operations over named dimensions, select values by labels and integers as well as efficient split-apply-combine operations with groupby via DimensionalData.jl. link: /UserGuide/group - title: Efficiency details: Efficient mapslices(x) and mapCube operations on huge multiple arrays, optimized for high-latency data access (object storage, compressed datasets). link: /UserGuide/compute -``` \ No newline at end of file +``` + +## How to Install YAXArrays.jl? + +Since `YAXArrays.jl` is registered in the Julia General registry, you can simply run the following command in the Julia REPL: + +```julia +julia> using Pkg +julia> Pkg.add("YAXArrays.jl") +``` +or + +```julia +julia> ] # ']' should be pressed +pkg> add YAXArrays +``` + +If you want to use the latest unreleased version, you can run the following command: + +```julia +pkg> add YAXArrays#master +``` + +## Want interoperability? + +Install the following package(s) for: + +:::code-group + +```julia [.tif] +using Pkg +Pkg.add("ArchGDAL") +``` + +```julia [.netcdf] +using Pkg +Pkg.add("NetCDF") +``` + +```julia [.zarr] +using Pkg +Pkg.add("Zarr") +``` + +```julia [.grib] +# TODO +``` + +```julia [plotting] +using Pkg +Pkg.add(["GLMakie", "GeoMakie", "AlgebraOfGraphics", "DimensionalData"]) +``` + +::: \ No newline at end of file From 83cd38262e2a21e5dc58f3c2ee3c8bfa208c0c4f Mon Sep 17 00:00:00 2001 From: Lazaro Alonso Date: Fri, 18 Oct 2024 14:15:42 +0200 Subject: [PATCH 2/2] fixes hero --- docs/package.json | 11 +++++++---- docs/src/index.md | 24 ++++++++++-------------- 2 files changed, 17 insertions(+), 18 deletions(-) diff --git a/docs/package.json b/docs/package.json index 904caf08..5e224ff1 100644 --- a/docs/package.json +++ b/docs/package.json @@ -5,10 +5,13 @@ "docs:preview": "vitepress preview build/.documenter" }, "devDependencies": { - "markdown-it": "^14.0.0", "markdown-it-mathjax3": "^4.3.2", - "vitepress-plugin-tabs": "^0.5.0", + "rollup-plugin-delete": "^2.0.0", "vitepress": "^1.3.4", - "vitest": "^1.3.0" + "vitepress-plugin-tabs": "^0.5.0" + }, + "dependencies": { + "markdown-it": "^14.1.0", + "markdown-it-footnote": "^4.0.0" } -} +} \ No newline at end of file diff --git a/docs/src/index.md b/docs/src/index.md index 42f187a8..44526041 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -34,19 +34,19 @@ features: - title: Efficiency details: Efficient mapslices(x) and mapCube operations on huge multiple arrays, optimized for high-latency data access (object storage, compressed datasets). link: /UserGuide/compute + +--- ``` ## How to Install YAXArrays.jl? -Since `YAXArrays.jl` is registered in the Julia General registry, you can simply run the following command in the Julia REPL: +Since `YAXArrays.jl` is registered in the Julia General registry, you can simply run the following +command in the Julia REPL: ```julia julia> using Pkg julia> Pkg.add("YAXArrays.jl") -``` -or - -```julia +# or julia> ] # ']' should be pressed pkg> add YAXArrays ``` @@ -61,28 +61,24 @@ pkg> add YAXArrays#master Install the following package(s) for: -:::code-group +::: code-group -```julia [.tif] +```julia [ .tif ] using Pkg Pkg.add("ArchGDAL") ``` -```julia [.netcdf] +```julia [ .netcdf ] using Pkg Pkg.add("NetCDF") ``` -```julia [.zarr] +```julia [ .zarr ] using Pkg Pkg.add("Zarr") ``` -```julia [.grib] -# TODO -``` - -```julia [plotting] +```julia [ plotting ] using Pkg Pkg.add(["GLMakie", "GeoMakie", "AlgebraOfGraphics", "DimensionalData"]) ```