Skip to content

Commit

Permalink
Merge pull request #455 from JuliaDataCubes/la/hero_instructions
Browse files Browse the repository at this point in the history
some details in hero
  • Loading branch information
lazarusA authored Oct 18, 2024
2 parents 7e8dc8e + 83cd382 commit 097bbf8
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 5 deletions.
11 changes: 7 additions & 4 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
}
52 changes: 51 additions & 1 deletion docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,60 @@ 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> ] # ']' 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 [ plotting ]
using Pkg
Pkg.add(["GLMakie", "GeoMakie", "AlgebraOfGraphics", "DimensionalData"])
```

:::

0 comments on commit 097bbf8

Please sign in to comment.