Skip to content

Commit

Permalink
some details in hero
Browse files Browse the repository at this point in the history
  • Loading branch information
lazarusA committed Oct 18, 2024
1 parent 7e8dc8e commit ae009ae
Showing 1 changed file with 55 additions and 1 deletion.
56 changes: 55 additions & 1 deletion docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <font color="#D27D2D">Makie.jl</font> 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 <font color="#D27D2D">groupby</font> via DimensionalData.jl.
link: /UserGuide/group
- title: Efficiency
details: Efficient <font color="#D27D2D">mapslices(x) </font> and <font color="#D27D2D">mapCube</font> 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:

```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"])
```

:::

0 comments on commit ae009ae

Please sign in to comment.