Skip to content

Commit cd60f96

Browse files
committed
fix links
1 parent 78182f3 commit cd60f96

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/src/.vitepress/config.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ export default defineConfig({
8787
// cleanUrls: true,
8888
outDir: 'REPLACE_ME_DOCUMENTER_VITEPRESS', // This is required for MarkdownVitepress to work correctly...
8989
head: [
90-
['link', { rel: 'icon', href: '/favicon.ico' }],
90+
['link', { rel: 'icon', href: `${baseTemp.base}favicon.ico` }],
9191
['script', {src: `${getBaseRepository(baseTemp.base)}versions.js`}],
9292
['script', {src: `${baseTemp.base}siteinfo.js`}]
9393
],

docs/src/UserGuide/plot.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Plot YAXArrays
22

33
This section describes how to visualize YAXArrays.
4-
See also the [Plotting maps tutorial](/tutorials/plottingmaps.html) to plot geospatial data.
4+
See also the [Plotting maps tutorial](../tutorials/plottingmaps) to plot geospatial data.
55
All [plotting capabilities](https://rafaqz.github.io/DimisensionalData.jl/dev/plots) of `AbstractDimArray` apply to a `YAXArrays` as well, because every `YAXArray` is also an `AbstractDimArray`.
66

77
## Plot a YAXArrray
@@ -45,7 +45,7 @@ Get a `Dataset` with CF meta data:
4545
using NetCDF
4646
using Downloads: download
4747
48-
path = download("https://www.unidata.ucar.edu/software/netcdf/examples/tos_O1_2001-2002.nc", "example.nc")
48+
path = download("https://archive.unidata.ucar.edu/software/netcdf/examples/tos_O1_2001-2002.nc", "example.nc")
4949
ds = open_dataset(path)
5050
```
5151

0 commit comments

Comments
 (0)